Skip to content

Commit a2318cb

Browse files
authored
Merge pull request #55 from espdev/update-deps
Update dependency ranges
2 parents 38b2cc9 + 78c6e87 commit a2318cb

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- ubuntu-latest
1717
- macos-latest
1818
- windows-latest
19-
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
19+
python-version: [ "3.6", "3.7", "3.8", "3.9" ] # "3.10" -- currently disabled
2020

2121
steps:
2222
- uses: actions/checkout@v2

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ def _get_long_description():
2929
packages=['csaps'],
3030
python_requires='>=3.6, <4',
3131
install_requires=[
32-
'numpy >=1.11.0, <1.22.0',
33-
'scipy >=1.0.0, <1.8.0',
32+
'numpy >=1.12.0, <2',
33+
'scipy >=1.0.0, <2',
3434
],
3535
extras_require={
3636
'docs': ['sphinx >=3.0.0, <5', 'matplotlib >=3.1', 'numpydoc', 'm2r2'],
@@ -64,6 +64,7 @@ def _get_long_description():
6464
'Programming Language :: Python :: 3.7',
6565
'Programming Language :: Python :: 3.8',
6666
'Programming Language :: Python :: 3.9',
67+
'Programming Language :: Python :: 3.10',
6768
'Programming Language :: Python :: Implementation :: CPython',
6869
],
6970
)

0 commit comments

Comments
 (0)