summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-11-04 08:17:31 +0100
committerRobin Gloster <mail@glob.in>2018-11-04 18:48:24 +0100
commitb1bdce07931dc69e3e3ba7738fac707b66f0f4cf (patch)
tree616c8723ecffd3f673f3c2cc55db0ab2406b17b7 /doc
parent6a73df797c4e92288918edcf128ecbd9caa1fc9e (diff)
downloadnixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.tar
nixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.tar.gz
nixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.tar.bz2
nixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.tar.lz
nixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.tar.xz
nixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.tar.zst
nixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.zip
python34: remove
Python 3.4 will receive it's final patch release in March 2019 and there won't
be any releases anymore after that, so also not during NixOS 2019.03.

Python 3.4 is not used anymore in Nixpkgs. In any case, migrating code from
3.4 to 3.4+ is trivial.
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/python.section.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md
index e6c8ab37d68a..907f4d9152a7 100644
--- a/doc/languages-frameworks/python.section.md
+++ b/doc/languages-frameworks/python.section.md
@@ -483,8 +483,8 @@ and in this case the `python35` interpreter is automatically used.
 
 ### Interpreters
 
-Versions 2.7, 3.4, 3.5, 3.6 and 3.7 of the CPython interpreter are available as
-respectively `python27`, `python34`, `python35` and `python36`. The PyPy interpreter
+Versions 2.7, 3.5, 3.6 and 3.7 of the CPython interpreter are available as
+respectively `python27`, `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
@@ -507,7 +507,7 @@ Each interpreter has the following attributes:
 - `buildEnv`. Function to build python interpreter environments with extra packages bundled together. See section *python.buildEnv function* for usage and documentation.
 - `withPackages`. Simpler interface to `buildEnv`. See section *python.withPackages function* for usage and documentation.
 - `sitePackages`. Alias for `lib/${libPrefix}/site-packages`.
-- `executable`. Name of the interpreter executable, e.g. `python3.4`.
+- `executable`. Name of the interpreter executable, e.g. `python3.7`.
 - `pkgs`. Set of Python packages for that specific interpreter. The package set can be modified by overriding the interpreter and passing `packageOverrides`.
 
 ### Building packages and applications
@@ -529,7 +529,6 @@ attribute set is created for each available Python interpreter. The available
 sets are
 
 * `pkgs.python27Packages`
-* `pkgs.python34Packages`
 * `pkgs.python35Packages`
 * `pkgs.python36Packages`
 * `pkgs.python37Packages`
@@ -837,7 +836,7 @@ community to help save time. No tool is preferred at the moment.
 
 ### Deterministic builds
 
-Python 2.7, 3.5 and 3.6 are now built deterministically and 3.4 mostly.
+The Python interpreters are now built deterministically.
 Minor modifications had to be made to the interpreters in order to generate
 deterministic bytecode. This has security implications and is relevant for
 those using Python in a `nix-shell`.