Skip to content

Commit 16af0f5

Browse files
committedSep 5, 2022
fix numpy version dependency to 1.21 minimum
1 parent baabfa7 commit 16af0f5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎.github/workflows/cibuildwheel.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [ubuntu-20.04, windows-2019, macos-12]
22-
python: [310, 39, 38]
22+
python: [310, 39, 38, 37]
2323

2424
steps:
2525
- uses: actions/checkout@v3

‎packaging/conda/conda_build_config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ python:
33
- 3.9
44
- 3.10
55
numpy:
6-
- 1.22
7-
- 1.22
8-
- 1.22
6+
- 1.21
7+
- 1.21
8+
- 1.21
99
zip_keys:
1010
- python
1111
- numpy

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ requires = ["setuptools>=42",
44
"scikit-build",
55
"cmake",
66
"ninja; platform_system!='Windows'",
7-
"numpy>=1.21"]
7+
"numpy~=1.21.0"]
88
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)
Please sign in to comment.