about summary refs log tree commit diff
path: root/doc/languages-frameworks/python.md
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-07-29 20:49:24 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-07-29 20:49:24 +0200
commitd387cac375a2da699d1feb160a775b4fbe46511a (patch)
treeb08f512c28db40d3bb6548d03fdc57ec8d26f7a0 /doc/languages-frameworks/python.md
parent4d66de88fffada1f4970e5173be78c1ef30a8798 (diff)
downloadnixlib-d387cac375a2da699d1feb160a775b4fbe46511a.tar
nixlib-d387cac375a2da699d1feb160a775b4fbe46511a.tar.gz
nixlib-d387cac375a2da699d1feb160a775b4fbe46511a.tar.bz2
nixlib-d387cac375a2da699d1feb160a775b4fbe46511a.tar.lz
nixlib-d387cac375a2da699d1feb160a775b4fbe46511a.tar.xz
nixlib-d387cac375a2da699d1feb160a775b4fbe46511a.tar.zst
nixlib-d387cac375a2da699d1feb160a775b4fbe46511a.zip
python33: end-of-life
Python 3.3 reaches end-of-life when we release 17.09.

https://mail.python.org/pipermail/python-dev/2017-July/148584.html
Diffstat (limited to 'doc/languages-frameworks/python.md')
-rw-r--r--doc/languages-frameworks/python.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/languages-frameworks/python.md b/doc/languages-frameworks/python.md
index 3c9df2e6e821..a4af9aa80f0f 100644
--- a/doc/languages-frameworks/python.md
+++ b/doc/languages-frameworks/python.md
@@ -423,7 +423,7 @@ and in this case the `python35` interpreter is automatically used.
 ### Interpreters
 
 Versions 2.7, 3.3, 3.4, 3.5 and 3.6 of the CPython interpreter are available as
-respectively `python27`, `python33`, `python34`, `python35` and `python36`. The PyPy interpreter
+respectively `python27`, `python34`, `python35` and `python36`. The PyPy interpreter
 is available as `pypy`. The aliases `python2` and `python3` correspond to respectively `python27` and
 `python35`. The default interpreter, `python`, maps to `python2`.
 The Nix expressions for the interpreters can be found in
@@ -469,7 +469,6 @@ sets are
 
 * `pkgs.python26Packages`
 * `pkgs.python27Packages`
-* `pkgs.python33Packages`
 * `pkgs.python34Packages`
 * `pkgs.python35Packages`
 * `pkgs.python36Packages`
@@ -622,7 +621,7 @@ attribute. The `shell.nix` file from the previous section can thus be also writt
 ```nix
 with import <nixpkgs> {};
 
-(python33.withPackages (ps: [ps.numpy ps.requests])).env
+(python36.withPackages (ps: [ps.numpy ps.requests])).env
 ```
 
 In contrast to `python.buildEnv`, `python.withPackages` does not support the more advanced options