Skip to content

Commit 9d54e0b

Browse files
committed
pin numpy~=1.19.0
1 parent 1200544 commit 9d54e0b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ install:
2525
- set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%
2626
- conda config --set always_yes yes --set changeps1 no
2727
- conda info -a
28-
- conda create -q -n test-environment python=%PYTHON_VERSION% numpy<1.20 scipy Cython
28+
- conda create -q -n test-environment python=%PYTHON_VERSION% numpy~=1.19.0 scipy Cython
2929
- activate test-environment
3030
- python -m pip install --upgrade pip
3131
- pip install wheel twine pytest

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
no_output_timeout: 30m
1919
command: |
2020
sudo pip install --upgrade pip
21-
sudo pip install --only-binary=numpy,scipy numpy<1.20 scipy Cython pytest pytest-cov codecov
21+
sudo pip install --only-binary=numpy,scipy numpy~=1.19.0 scipy Cython pytest pytest-cov codecov
2222
sudo pip install -e .[tests]
2323
- save_cache:
2424
key: deps9-{{ .Branch }}

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
python -m pip install --only-binary=numpy,scipy numpy<1.20 scipy Cython pytest pytest-cov codecov flake8
32+
python -m pip install --only-binary=numpy,scipy numpy~=1.19.0 scipy Cython pytest pytest-cov codecov flake8
3333
python -m pip install -e .[tests]
3434
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3535
- name: Lint with flake8

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- name: Install dependencies
8181
run: |
8282
python -m pip install --upgrade pip
83-
python -m pip install --only-binary=numpy,scipy numpy<1.20 scipy Cython wheel
83+
python -m pip install --only-binary=numpy,scipy numpy~=1.19.0 scipy Cython wheel
8484
8585
- name: Build source tar file
8686
run: python setup.py sdist

0 commit comments

Comments
 (0)