about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorRobert Hensing <roberth@users.noreply.github.com>2020-03-22 18:12:41 +0100
committerGitHub <noreply@github.com>2020-03-22 18:12:41 +0100
commit4580564d4a63ebf9eb2604148ab64ade08e4580c (patch)
treeb5cbbb136aa2492a7b999947a2a472e90165341f /pkgs/top-level
parente692babf05868c3081b0e9a6b4c2c6bd08f3ac45 (diff)
parentc93acee712eefe7261388c55a85e911d3c81d08f (diff)
downloadnixlib-4580564d4a63ebf9eb2604148ab64ade08e4580c.tar
nixlib-4580564d4a63ebf9eb2604148ab64ade08e4580c.tar.gz
nixlib-4580564d4a63ebf9eb2604148ab64ade08e4580c.tar.bz2
nixlib-4580564d4a63ebf9eb2604148ab64ade08e4580c.tar.lz
nixlib-4580564d4a63ebf9eb2604148ab64ade08e4580c.tar.xz
nixlib-4580564d4a63ebf9eb2604148ab64ade08e4580c.tar.zst
nixlib-4580564d4a63ebf9eb2604148ab64ade08e4580c.zip
Merge pull request #83124 from gnprice/pr-python39full
python39Full: fix to use Python 3.9 rather than 3.8
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index e0b411088abb..a9c9d2de49ec 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -9565,7 +9565,7 @@ in
   python36Full = python36.override{x11Support=true;};
   python37Full = python37.override{x11Support=true;};
   python38Full = python38.override{x11Support=true;};
-  python39Full = python38.override{x11Support=true;};
+  python39Full = python39.override{x11Support=true;};
 
   # pythonPackages further below, but assigned here because they need to be in sync
   pythonPackages = python.pkgs;