Skip to content

Commit d77e138

Browse files
committed
python3: 3.10 -> 3.11
Updates the default python version to 3.11, while keeping 3.10 around until after the NixOS 23.11 release.
1 parent 6626399 commit d77e138

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pkgs/development/interpreters/python/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ in {
127127
enableOptimizations = false;
128128
enableLTO = false;
129129
mimetypesSupport = false;
130-
} // sources.python310)).overrideAttrs(old: {
130+
} // sources.python311)).overrideAttrs(old: {
131131
# TODO(@Artturin): Add this to the main cpython expr
132132
strictDeps = true;
133133
pname = "python3-minimal";

pkgs/top-level/all-packages.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18045,11 +18045,11 @@ with pkgs;
1804518045
# available as `pythonPackages.tkinter` and can be used as any other Python package.
1804618046
# When switching these sets, please update docs at ../../doc/languages-frameworks/python.md
1804718047
python2 = python27;
18048-
python3 = python310;
18048+
python3 = python311;
1804918049

1805018050
# pythonPackages further below, but assigned here because they need to be in sync
1805118051
python2Packages = dontRecurseIntoAttrs python27Packages;
18052-
python3Packages = dontRecurseIntoAttrs python310Packages;
18052+
python3Packages = dontRecurseIntoAttrs python311Packages;
1805318053

1805418054
pypy = pypy2;
1805518055
pypy2 = pypy27;

0 commit comments

Comments
 (0)