From 295bcdfb5e6791c67dc824206f04cc037f0057cb Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 19 May 2016 11:55:13 +0200 Subject: [PATCH] Python 3 points to 3.5 instead of 3.4 (#15555) Note that the documentation currently incorrectly states that 3 already points to 3.5. --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c180b3ca39f..da780b08734 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5604,12 +5604,12 @@ in python = python2; python2 = python27; - python3 = python34; + python3 = python35; # pythonPackages further below, but assigned here because they need to be in sync pythonPackages = python2Packages; python2Packages = python27Packages; - python3Packages = python34Packages; + python3Packages = python35Packages; python26 = callPackage ../development/interpreters/python/2.6 { db = db47;