Skip to content

Commit ca5b5e9

Browse files
committed
Drop support for numpy<1.21
1 parent 5363ae0 commit ca5b5e9

3 files changed

Lines changed: 3 additions & 13 deletions

File tree

.github/workflows/ci_workflows.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,6 @@ jobs:
2828
toxenv: test-oldestdeps
2929
toxargs: -v
3030

31-
- name: Test with medium old supported versions of our dependencies
32-
# Test that we do not have a problem with some specific version (gh-101).
33-
# Comment out if not needed.
34-
os: ubuntu-22.04
35-
python: 3.9
36-
toxenv: test-olddeps
37-
toxargs: -v
38-
3931
- name: Test with development versions of our dependencies
4032
os: ubuntu-latest
4133
python: '3.14'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
]
2727
urls = {Homepage = "https://github.com/liberfa/pyerfa"}
2828
requires-python = ">=3.9"
29-
dependencies = ["numpy>=1.19.3"]
29+
dependencies = ["numpy>=1.21"]
3030
dynamic = ["version"]
3131

3232
[project.optional-dependencies]

tox.ini

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
test{,-oldestdeps,-olddeps,-devdeps}
3+
test{,-oldestdeps,-devdeps}
44
build_docs
55
linkcheck
66
codestyle
@@ -32,13 +32,11 @@ changedir = .tmp/{envname}
3232
description =
3333
run tests
3434
devdeps: with the latest developer version of key dependencies
35-
olddeps: with medium old versions of key dependencies
3635
oldestdeps: with the oldest supported version of key dependencies
3736

3837
# The following provides some specific pinnings for key packages
3938
deps =
40-
oldestdeps: numpy==1.19.* # astropy LTS
41-
olddeps: numpy==1.20.* # something potentially problematic (see gh-101)
39+
oldestdeps: numpy==1.21.*
4240
devdeps: numpy>=0.0.dev0
4341

4442
# The following indicates which extras_require from setup.cfg will be installed

0 commit comments

Comments
 (0)