Skip to content

Commit c181518

Browse files
committed
update CI matrix for core tests, following the NEP+1 policy
1 parent a0bba3a commit c181518

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/core-test.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@ jobs:
1919
fail-fast: true
2020
matrix:
2121
os: ["ubuntu-latest", "windows-latest"]
22-
# "macos-latest",
23-
python-version: ['3.7', '3.8', '3.9']
24-
numpy-version: ['1.16.6', '1.17.5', '1.18.5', '1.19.5', '1.20.3', '1.21.5', '1.22.3']
22+
# "macos-latest",
23+
python-version: ['3.7', '3.8', '3.9', '3.10']
24+
numpy-version: ['1.18.5', '1.19.5', '1.20.3', '1.21.6', '1.22.4', '1.23.0']
2525
exclude:
2626
- python-version: '3.7'
27-
numpy-version: '1.22.3'
28-
27+
numpy-version: '1.22.4'
28+
- python-version: '3.7'
29+
numpy-version: '1.23.0'
2930
steps:
3031
- name: Set up Python ${{ matrix.python-version }}
3132
uses: actions/setup-python@v2

doc/source/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Dependencies
1212
------------
1313

1414
* Python_ >= 3.7
15-
* numpy_ >= 1.16.1
15+
* numpy_ >= 1.18.5
1616
* quantities_ >= 0.12.1
1717

1818
You can install the latest published version of Neo and its dependencies using::

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import os
55

66
long_description = open("README.rst").read()
7-
install_requires = ['numpy>=1.16.1',
7+
install_requires = ['numpy>=1.18.5',
88
'quantities>=0.12.1']
99
extras_require = {
1010
'igorproio': ['igor'],
@@ -46,6 +46,7 @@
4646
'Programming Language :: Python :: 3.7',
4747
'Programming Language :: Python :: 3.8',
4848
'Programming Language :: Python :: 3.9',
49+
'Programming Language :: Python :: 3.10',
4950
'Programming Language :: Python :: 3 :: Only',
5051
'Topic :: Scientific/Engineering']
5152
)

0 commit comments

Comments
 (0)