Skip to content

Commit

Permalink
Merge pull request #71 from espdev/update-deps
Browse files Browse the repository at this point in the history
Update dependency restrictions, classifiers and CI
  • Loading branch information
espdev authored Dec 17, 2023
2 parents 6e32be8 + 76db104 commit 33f07d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 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.7", "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]

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

0 comments on commit 33f07d7

Please sign in to comment.