Skip to content

Commit 61077d5

Browse files
committed
Fix numpy build dependency pin for Python 3.13
1 parent 831fa51 commit 61077d5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/basemap/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
requires = [
33
'setuptools',
44
'wheel',
5-
'numpy == 2.0.0',
65
'cython >= 0.29.31, < 3.1',
6+
'numpy == 2.1.0; python_version == "3.13"',
7+
'numpy == 2.0.0; python_version <= "3.12"',
78
]
89
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)