We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 822d285 commit e9b81eeCopy full SHA for e9b81ee
pyproject.toml
@@ -6,12 +6,9 @@ requires = [
6
"meson==1.2.1",
7
"wheel",
8
"Cython==3.0.5", # Note: sync with setup.py, environment.yml and asv.conf.json
9
- # Any NumPy version should be fine for compiling. Users are unlikely
10
- # to get a NumPy<1.25 so the result will be compatible with all relevant
11
- # NumPy versions (if not it is presumably compatible with their version).
12
- # Pin <2.0 for releases until tested against an RC. But explicitly allow
13
- # testing the `.dev0` nightlies (which require the extra index).
14
- "numpy>1.22.4,<=2.0.0.dev0",
+ # Force numpy higher than 2.0rc1, so that built wheels are compatible
+ # with both numpy 1 and 2
+ "numpy>=2.0.0rc1",
15
"versioneer[toml]"
16
]
17
0 commit comments