diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2022-05-22 16:14:30 +0200 |
|---|---|---|
| committer | Frederik Rietdijk <fridh@fridh.nl> | 2022-10-28 11:49:12 +0200 |
| commit | 57ac426ce6bdf52551d30545a82d05decf9c511d (patch) | |
| tree | 7d5f62193a1cc11af048ae127f1f0095d11bb52b | |
| parent | Merge #198013: librewolf: fix build on aarch64-linux by upstream patch (diff) | |
| download | nixpkgs-57ac426ce6bdf52551d30545a82d05decf9c511d.tar.gz | |
python311: 3.11.0a7 -> 3.11.0b1
https://www.python.org/downloads/release/python-3110b1/
https://blog.python.org/2022/05/python-3110b1-is-now-available.html
(cherry picked from commit 85dfb11907c220c042f1372a2f411520e1efe235)
| -rw-r--r-- | pkgs/development/interpreters/python/cpython/default.nix | 2 | ||||
| -rw-r--r-- | pkgs/development/interpreters/python/default.nix | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/python/cpython/default.nix b/pkgs/development/interpreters/python/cpython/default.nix index d79c685414df..0ab6b3e68076 100644 --- a/pkgs/development/interpreters/python/cpython/default.nix +++ b/pkgs/development/interpreters/python/cpython/default.nix @@ -229,7 +229,7 @@ in with passthru; stdenv.mkDerivation { # * https://bugs.python.org/issue35523 # * https://github.com/python/cpython/commit/e6b247c8e524 ./3.7/no-win64-workaround.patch - ] ++ optionals (pythonAtLeast "3.7") [ + ] ++ optionals (pythonAtLeast "3.7" && pythonOlder "3.11") [ # Fix darwin build https://bugs.python.org/issue34027 ./3.7/darwin-libutil.patch ] ++ optionals (pythonOlder "3.8") [ diff --git a/pkgs/development/interpreters/python/default.nix b/pkgs/development/interpreters/python/default.nix index 0a907f72f74e..b0f61ff2e46f 100644 --- a/pkgs/development/interpreters/python/default.nix +++ b/pkgs/development/interpreters/python/default.nix @@ -199,9 +199,9 @@ in { major = "3"; minor = "11"; patch = "0"; - suffix = "a7"; + suffix = "b1"; }; - sha256 = "sha256-t8Vt10wvRy1Ja1qNNWvWrZ75sD8mKIwyN9P/aYqwPXQ="; + sha256 = "sha256-3MrJsD3T/lzRC8VHV56wvoGh2JcewqhmsD3sU5H1rSU="; inherit (darwin) configd; inherit passthruFun; }; |
