From c93acee712eefe7261388c55a85e911d3c81d08f Mon Sep 17 00:00:00 2001 From: Greg Price Date: Sat, 21 Mar 2020 23:48:45 -0700 Subject: [PATCH] python39Full: fix to use Python 3.9 rather than 3.8 Looks like this was a typo when python39 was added in 648152fdb. --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 014bb3e0b9a7..71c0fa4610d5 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;