Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,22 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.7", "3.8", "3.9" ]
numpy-version: [ "1.16", "1.17", "1.18", "1.19", "1.20", "1.21" ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
numpy-version: [ "1.19", "1.20", "1.21", "1.22", "1.23", "1.24" ]
exclude:
- python-version: "3.9"
numpy-version: "1.16"
- python-version: "3.10"
numpy-version: "1.19"
os: ubuntu-latest
- python-version: "3.10"
numpy-version: "1.20"
os: ubuntu-latest
- python-version: "3.9"
numpy-version: "1.17"
- python-version: "3.11"
numpy-version: "1.19"
os: ubuntu-latest
- python-version: "3.8"
numpy-version: "1.17"
- python-version: "3.11"
numpy-version: "1.20"
os: ubuntu-latest
include:
- python-version: "3.10"
- python-version: "3.11"
numpy-version: "1.21"
os: ubuntu-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions doc/user/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Prerequisites

Quantities has a few dependencies:

* Python_ (>=3.7)
* NumPy_ (>=1.16)
* Python_ (>=3.8)
* NumPy_ (>=1.19)

(bearing in mind that not all combinations of Python and NumPy versions necessarily work).

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ def run(self):
packages = packages,
platforms = 'Any',
requires = [
'python (>=3.7)',
'numpy (>=1.16)',
'python (>=3.8)',
'numpy (>=1.19)',
],
url = 'http://python-quantities.readthedocs.io/',
version = versioneer.get_version(),
Expand Down