about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGreg Price <gnprice@gmail.com>2020-03-21 23:48:45 -0700
committerGreg Price <gnprice@gmail.com>2020-03-21 23:48:45 -0700
commitc93acee712eefe7261388c55a85e911d3c81d08f (patch)
treea0612bc109be71b6b81ee1df187c7090d68a42d8
parent2d0976c780a338360d13a5113f2a6c87e10a7eec (diff)
python39Full: fix to use Python 3.9 rather than 3.8
Looks like this was a typo when python39 was added in 648152fdb.
-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 014bb3e0b9a7f..71c0fa4610d59 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -9461,7 +9461,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;