summary refs log tree commit diff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-08-12 21:57:40 -0700
committerJonathan Ringer <jonringer117@gmail.com>2020-08-12 21:57:40 -0700
commit8c7d49b726881187c57e29c49c8574b2404ee033 (patch)
tree4fc59978723a065bd7774eb8db91af4822853ca1 /doc/languages-frameworks
parent91bec616359354dbc108c41cea543145fe18abad (diff)
downloadnixpkgs-8c7d49b726881187c57e29c49c8574b2404ee033.tar
nixpkgs-8c7d49b726881187c57e29c49c8574b2404ee033.tar.gz
nixpkgs-8c7d49b726881187c57e29c49c8574b2404ee033.tar.bz2
nixpkgs-8c7d49b726881187c57e29c49c8574b2404ee033.tar.lz
nixpkgs-8c7d49b726881187c57e29c49c8574b2404ee033.tar.xz
nixpkgs-8c7d49b726881187c57e29c49c8574b2404ee033.tar.zst
nixpkgs-8c7d49b726881187c57e29c49c8574b2404ee033.zip
docs: update python interpreter versions
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/python.section.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index dc10483ce69..7bee48773c2 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -640,8 +640,8 @@ and in this case the `python38` interpreter is automatically used.
 
 ### Interpreters
 
-Versions 2.7, 3.5, 3.6, 3.7 and 3.8 of the CPython interpreter are available as
-respectively `python27`, `python35`, `python36`, `python37` and `python38`. The
+Versions 2.7, 3.6, 3.7 and 3.8 of the CPython interpreter are available as
+respectively `python27`, `python36`, `python37` and `python38`. The
 aliases `python2` and `python3` correspond to respectively `python27` and
 `python38`. The default interpreter, `python`, maps to `python2`. The PyPy
 interpreters compatible with Python 2.7 and 3 are available as `pypy27` and
@@ -689,15 +689,16 @@ attribute set is created for each available Python interpreter. The available
 sets are
 
 * `pkgs.python27Packages`
-* `pkgs.python35Packages`
 * `pkgs.python36Packages`
 * `pkgs.python37Packages`
+* `pkgs.python38Packages`
+* `pkgs.python39Packages`
 * `pkgs.pypyPackages`
 
 and the aliases
 
 * `pkgs.python2Packages` pointing to `pkgs.python27Packages`
-* `pkgs.python3Packages` pointing to `pkgs.python37Packages`
+* `pkgs.python3Packages` pointing to `pkgs.python38Packages`
 * `pkgs.pythonPackages` pointing to `pkgs.python2Packages`
 
 #### `buildPythonPackage` function