summary refs log tree commit diff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authornatsukium <tomoya.otabi@gmail.com>2023-11-09 09:56:00 +0900
committernatsukium <tomoya.otabi@gmail.com>2023-11-09 09:56:00 +0900
commit224ea037e4de1c0695d937166cb05ce67a974b76 (patch)
tree92d1be71bb913b621ed7c5bb76e49221fe3a0980 /doc/languages-frameworks
parent1e45a2364239087f7fae9a0dcc97cbdd29aabc78 (diff)
downloadnixpkgs-224ea037e4de1c0695d937166cb05ce67a974b76.tar
nixpkgs-224ea037e4de1c0695d937166cb05ce67a974b76.tar.gz
nixpkgs-224ea037e4de1c0695d937166cb05ce67a974b76.tar.bz2
nixpkgs-224ea037e4de1c0695d937166cb05ce67a974b76.tar.lz
nixpkgs-224ea037e4de1c0695d937166cb05ce67a974b76.tar.xz
nixpkgs-224ea037e4de1c0695d937166cb05ce67a974b76.tar.zst
nixpkgs-224ea037e4de1c0695d937166cb05ce67a974b76.zip
doc/languages-frameworks/python: update interpreters version
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/python.section.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index 69a95f482fb..16e8ff6573c 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -9,8 +9,8 @@
 | python27   | python2, python | CPython 2.7 |
 | python38   |                 | CPython 3.8 |
 | python39   |                 | CPython 3.9 |
-| python310  | python3         | CPython 3.10 |
-| python311  |                 | CPython 3.11 |
+| python310  |                 | CPython 3.10 |
+| python311  | python3         | CPython 3.11 |
 | python312  |                 | CPython 3.12 |
 | python313  |                 | CPython 3.13 |
 | pypy27     | pypy2, pypy     | PyPy2.7 |
@@ -64,12 +64,14 @@ sets are
 * `pkgs.python39Packages`
 * `pkgs.python310Packages`
 * `pkgs.python311Packages`
+* `pkgs.python312Packages`
+* `pkgs.python313Packages`
 * `pkgs.pypyPackages`
 
 and the aliases
 
 * `pkgs.python2Packages` pointing to `pkgs.python27Packages`
-* `pkgs.python3Packages` pointing to `pkgs.python310Packages`
+* `pkgs.python3Packages` pointing to `pkgs.python311Packages`
 * `pkgs.pythonPackages` pointing to `pkgs.python2Packages`
 
 #### `buildPythonPackage` function {#buildpythonpackage-function}
@@ -525,7 +527,7 @@ There is a boolean value `lib.inNixShell` set to `true` if nix-shell is invoked.
 
 Several versions of the Python interpreter are available on Nix, as well as a
 high amount of packages. The attribute `python3` refers to the default
-interpreter, which is currently CPython 3.10. The attribute `python` refers to
+interpreter, which is currently CPython 3.11. The attribute `python` refers to
 CPython 2.7 for backwards-compatibility. It is also possible to refer to
 specific versions, e.g. `python311` refers to CPython 3.11, and `pypy` refers to
 the default PyPy interpreter.