Skip to content

Commit 9988473

Browse files
committed
update test matrix following NEP29 + 1 year
- drop support for Python 3.7 - drop support for numpy 1.18
1 parent c052168 commit 9988473

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

.github/workflows/core-test.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,9 @@ jobs:
2020
matrix:
2121
os: ["ubuntu-latest", "windows-latest"]
2222
# "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']
23+
python-version: ['3.8', '3.9', '3.10']
24+
numpy-version: ['1.19.5', '1.20.3', '1.21.6', '1.22.4', '1.23.5', '1.24.1']
2525
exclude:
26-
- python-version: '3.7'
27-
numpy-version: '1.22.4'
28-
- python-version: '3.7'
29-
numpy-version: '1.23.0'
30-
- python-version: '3.10'
31-
numpy-version: '1.18.5'
3226
- python-version: '3.10'
3327
numpy-version: '1.19.5'
3428
- python-version: '3.10'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
packaging
2-
numpy>=1.18.5
2+
numpy>=1.19.5
33
quantities>=0.12.1

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
long_description = open("README.rst").read()
77
install_requires = ['packaging',
8-
'numpy>=1.18.5',
8+
'numpy>=1.19.5',
99
'quantities>=0.12.1']
1010
extras_require = {
1111
'igorproio': ['igor'],
@@ -44,15 +44,14 @@
4444
long_description=long_description,
4545
license="BSD-3-Clause",
4646
url='https://neuralensemble.org/neo',
47-
python_requires=">=3.7",
47+
python_requires=">=3.8",
4848
classifiers=[
4949
'Development Status :: 4 - Beta',
5050
'Intended Audience :: Science/Research',
5151
'License :: OSI Approved :: BSD License',
5252
'Natural Language :: English',
5353
'Operating System :: OS Independent',
5454
'Programming Language :: Python :: 3',
55-
'Programming Language :: Python :: 3.7',
5655
'Programming Language :: Python :: 3.8',
5756
'Programming Language :: Python :: 3.9',
5857
'Programming Language :: Python :: 3.10',

0 commit comments

Comments
 (0)