Skip to content

Commit 9181553

Browse files
MAINT: CI: Test with numpy back to 1.15.
1 parent da251b0 commit 9181553

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
max-parallel: 4
1111
matrix:
1212
python-version: [3.5, 3.6, 3.7]
13+
numpy-version: [1.15, 1.16, 1.17]
1314

1415
steps:
1516
- uses: actions/checkout@v1
@@ -20,7 +21,7 @@ jobs:
2021
- name: Install dependencies
2122
run: |
2223
python -m pip install --upgrade pip
23-
pip install -r requirements.txt
24+
pip install numpy==${{ matrix.numpy-version }}
2425
- name: Lint with flake8
2526
run: |
2627
pip install flake8

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
numpy>=1.17
1+
numpy>=1.15

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def get_version():
5151
packages=find_packages(exclude=['doc']),
5252
author='Travis E. Oliphant et al.',
5353
license='BSD',
54-
install_requires=['numpy>=1.17'],
54+
install_requires=['numpy>=1.15'],
5555
python_requires='>=3.5',
5656
classifiers=CLASSIFIERS.splitlines(),
5757
project_urls={

0 commit comments

Comments
 (0)