Skip to content

Commit 0daad3c

Browse files
committed
Support older versions of NumPy; add Python 3.10
(this corresponds to following NEP + 1 year)
1 parent 2043891 commit 0daad3c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: [ ubuntu-latest ]
15-
python-version: [ "3.7", "3.8", "3.9" ]
16-
numpy-version: [ "1.18", "1.19", "1.20", "1.21" ]
15+
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
16+
numpy-version: [ "1.16", "1.17", "1.18", "1.19", "1.20", "1.21" ]
1717

1818
steps:
1919
- uses: actions/checkout@v2

doc/user/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Prerequisites
99
Quantities has a few dependencies:
1010

1111
* Python_ (>=3.7)
12-
* NumPy_ (>=1.18)
12+
* NumPy_ (>=1.16)
1313

1414

1515
Source Code Installation

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def run(self):
137137
platforms = 'Any',
138138
requires = [
139139
'python (>=3.7)',
140-
'numpy (>=1.18)',
140+
'numpy (>=1.16)',
141141
],
142142
url = 'http://python-quantities.readthedocs.io/',
143143
version = versioneer.get_version(),

0 commit comments

Comments
 (0)