Skip to content

Commit e162b5f

Browse files
authored
Merge pull request #178 from python-control/no-np1.23
Work around numpy/numpy#21889
2 parents 4f98dac + d5769a4 commit e162b5f

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
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
4+
- numpy!=1.23.0

.github/workflows/slycot-build-and-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ jobs:
167167
shell: bash -l {0}
168168
run: |
169169
set -e
170-
mamba install boa numpy
171170
numpyversion=$(python -c 'import numpy; print(numpy.version.version)')
172171
conda mambabuild --python "${{ matrix.python }}" --numpy $numpyversion conda-recipe
173172
# preserve directory structure for custom conda channel

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
30+
- numpy!=1.23.0
3131
- pip
3232
- scikit-build >=0.14.1
3333

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ requires = [
44
"wheel",
55
"scikit-build>=0.14.1",
66
"cmake",
7-
"numpy"]
7+
"numpy!=1.23.0"]
88
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)