Skip to content

Commit 4b3d86c

Browse files
authored
python313Packages.gurobipy: 12.0.0 -> 12.0.1 (#380108)
2 parents 758c4db + 30898cd commit 4b3d86c

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

pkgs/development/python-modules/gurobipy/default.nix

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,30 @@ let
1010
format = "wheel";
1111
pyShortVersion = "cp" + builtins.replaceStrings [ "." ] [ "" ] python.pythonVersion;
1212
platforms = rec {
13-
aarch64-darwin = "macosx_10_9_universal2";
13+
aarch64-darwin =
14+
if pyShortVersion == "cp313" then "macosx_10_13_universal2" else "macosx_10_9_universal2";
1415
aarch64-linux = "manylinux2014_aarch64.manylinux_2_17_aarch64";
1516
x86_64-darwin = aarch64-darwin;
1617
x86_64-linux = "manylinux2014_x86_64.manylinux_2_17_x86_64";
1718
};
1819
platform = platforms.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
1920
hashes = rec {
20-
cp311-aarch64-darwin = "sha256-KRC3fY7KUVCfI4u+TQQjgqLLIEunkzgIZxiuTol2/50=";
21-
cp311-aarch64-linux = "sha256-/DiS49iND4oB2nXxL3QCPTmO9Zmp4a3WbtdjE3M+MPs=";
22-
cp311-x86_64-darwin = cp311-aarch64-darwin;
23-
cp311-x86_64-linux = "sha256-oI+0Kl58sCzbmTwTgci4xaO67tyt1W5yiNhFile4FEI=";
24-
cp312-aarch64-darwin = "sha256-tcNcuYGmFScBaFUyTgVMrkc0lnhdtX8Ggr1W1YSpbu4=";
25-
cp312-aarch64-linux = "sha256-+Ch951NcO5yX9KqHFpadcDAqlyvQnp07b71yZsoOq3I=";
21+
cp312-aarch64-darwin = "sha256-ZCrGAEiKZ/u/gmVmEanbVJPXDmzglk4ZHER6ZBBsMlw=";
22+
cp312-aarch64-linux = "sha256-Rf8dzgH3hbL7XPfqYtqQSkSSC7JulID7/t8dL2fawa4=";
2623
cp312-x86_64-darwin = cp312-aarch64-darwin;
27-
cp312-x86_64-linux = "sha256-kLukle+yXP9aOCYViv974pY30ugKzMOompjLhjCFYQY=";
24+
cp312-x86_64-linux = "sha256-42xX3wMwxCdylNCQVlpWxWoIPYPXDDCvjpxETYCoVKU=";
25+
cp313-aarch64-darwin = "sha256-ykkK56TacwNhszVkNQqUwK1gXL9wvnMwcbHHtSJmU1U=";
26+
cp313-aarch64-linux = "sha256-yXHkDdzhdR4HfhYFk+0412pz0pg2X9P5BzfBVDEEQk0=";
27+
cp313-x86_64-darwin = cp313-aarch64-darwin;
28+
cp313-x86_64-linux = "sha256-bgB87cLGn1oXkY0P406I6V8WcLXCSsgooN8rFxY0NFk=";
2829
};
2930
hash =
3031
hashes."${pyShortVersion}-${stdenv.system}"
3132
or (throw "Unsupported Python version: ${python.pythonVersion}");
3233
in
3334
buildPythonPackage rec {
3435
pname = "gurobipy";
35-
version = "12.0.0";
36+
version = "12.0.1";
3637
inherit format;
3738

3839
src = fetchPypi {

0 commit comments

Comments
 (0)