Skip to content

Commit fed7d7f

Browse files
committed
build: remove python 3.7 and disallow numpy1.24
1 parent 321b3be commit fed7d7f

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/python-install-and-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
build:
1717

1818
runs-on: ubuntu-latest
19-
19+
2020
strategy:
2121
matrix:
2222
os: [ubuntu-latest, windows-latest, macos-latest]
23-
python-version: ["3.7", "3.8", "3.9", "3.10"]
24-
23+
python-version: ["3.8", "3.9", "3.10"]
24+
2525
steps:
2626
- uses: actions/checkout@v3
2727
- name: Set up Python ${{ matrix.python-version }}
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install dependencies
3232
run: |
3333
python -m pip install --upgrade pip
34-
pip install -r requirements_dev.txt
34+
pip install -r requirements_dev.txt
3535
pip install .
3636
- name: Test with pytest
3737
run: |

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
with open('HISTORY.rst') as history_file:
1212
history = history_file.read()
1313

14-
requirements = ['numpy>=1.19']
14+
requirements = ['numpy>=1.19,!=1.24']
1515

1616
test_requirements = ['pytest>=4.6', 'hypothesis']
1717

0 commit comments

Comments
 (0)