Skip to content

Commit c71e69c

Browse files
authored
Merge pull request #188 from bnavigator/pin-numpy
pin numpy to <1.24 due to gh-187
2 parents c8da35e + f7da200 commit c71e69c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/conda-env/build-env.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name: build-env
22
dependencies:
33
- boa
4-
- numpy!=1.23.0
4+
- numpy <1.24

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ requirements:
2727
- libcblas * *netlib
2828
- liblapack * *netlib
2929
- python
30-
- numpy !=1.23.0
30+
- numpy <1.24
3131
- pip
3232
- scikit-build >=0.15
3333
- setuptools >=45

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ requires = [
55
"wheel",
66
"scikit-build>=0.15",
77
"cmake>=3.14",
8-
"numpy!=1.23.0"]
8+
# python-control/Slycot/issues/187
9+
"numpy<1.24"]
910
build-backend = "setuptools.build_meta"
1011

1112
[project]

0 commit comments

Comments
 (0)