Skip to content

Commit

Permalink
Drop support for Python 3.8, add support for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiodsf committed Jan 8, 2025
1 parent 02c2e45 commit 166c4be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.8'
python-version: '3.9'
- name: Build sdist
run: pip install numpy && python setup.py sdist
- uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ requires = [
]

[tool.cibuildwheel]
build = ['cp38-*', 'cp39-*', 'cp310-*', 'cp311-*', 'cp312-*']
build = ['cp39-*', 'cp310-*', 'cp311-*', 'cp312-*', 'cp313-*']
skip = '*-win32'
test-requires = 'pytest'
test-command = 'pytest --pyargs stockwell'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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 :: 3.13',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics'],
install_requires=['numpy>=1.18']
Expand Down

0 comments on commit 166c4be

Please sign in to comment.