Skip to content

Commit

Permalink
Merge pull request #55 from espdev/update-deps
Browse files Browse the repository at this point in the history
Update dependency ranges
  • Loading branch information
espdev committed Oct 5, 2021
2 parents 38b2cc9 + 78c6e87 commit a2318cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- ubuntu-latest
- macos-latest
- windows-latest
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
python-version: [ "3.6", "3.7", "3.8", "3.9" ] # "3.10" -- currently disabled

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def _get_long_description():
packages=['csaps'],
python_requires='>=3.6, <4',
install_requires=[
'numpy >=1.11.0, <1.22.0',
'scipy >=1.0.0, <1.8.0',
'numpy >=1.12.0, <2',
'scipy >=1.0.0, <2',
],
extras_require={
'docs': ['sphinx >=3.0.0, <5', 'matplotlib >=3.1', 'numpydoc', 'm2r2'],
Expand Down Expand Up @@ -64,6 +64,7 @@ def _get_long_description():
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
],
)

0 comments on commit a2318cb

Please sign in to comment.