Skip to content

Commit

Permalink
fix(flake): python310 -> python311
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
  • Loading branch information
cameronraysmith committed Jul 29, 2024
1 parent 8ed0f42 commit a10a243
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
mkPoetryAttrs = {
projectDir = ./.;
overrides = poetry2nixOverrides;
python = pkgs.python310;
python = pkgs.python311;
# aarch64 cross-compilation on x86_64 may be unusable if preferWheels
# is disabled. If all of the individually contributing packages were
# identified, it may be possible to use the library-specific overrides
Expand All @@ -93,7 +93,7 @@
// {
extraPackages = ps:
with pkgs; [
python310Packages.pip
python311Packages.pip
];
}
);
Expand All @@ -110,7 +110,7 @@
groups = groups;
extraPackages = ps:
with pkgs; [
python310Packages.pip
python311Packages.pip
];
editablePackageSources = {
${packageName} = src;
Expand Down Expand Up @@ -207,7 +207,7 @@

releaseEnv = pkgs.buildEnv {
name = "release-env";
paths = with pkgs; [poetry python310];
paths = with pkgs; [poetry python311];
};

containerImage = containerImages.containerImage;
Expand Down

0 comments on commit a10a243

Please sign in to comment.