Skip to content

Commit

Permalink
3.11 support (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
andyx13 committed Nov 21, 2023
1 parent a86a115 commit babf659
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
description='Signal Processing Tools for Machine Mearning',
entry_points={
Expand All @@ -96,7 +97,7 @@
long_description_content_type='text/markdown',
name='sigpro',
packages=find_packages(include=['sigpro', 'sigpro.*']),
python_requires='>=3.8,<3.11',
python_requires='>=3.8,<3.12',
setup_requires=setup_requires,
test_suite='tests',
tests_require=tests_require,
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[tox]
envlist = py3{8,9,10}-{lint,readme,pytest,minimum}
envlist = py3{8,9,10,11}-{lint,readme,pytest,minimum}

[travis]
python =
3.11: py311-lint, py311-readme, py311-pytest, py311-minimum, py311-tutorials
3.10: py310-lint, py310-readme, py310-pytest, py310-minimum, py310-tutorials
3.9: py39-lint, py39-readme, py39-pytest, py39-minimum, py39-tutorials
3.8: py38-lint, py38-readme, py38-pytest, py38-minimum, py38-tutorials

[gh-actions]
python =
3.11: py311-lint, py311-readme, py311-pytest, py311-minimum, py311-tutorials
3.10: py310-lint, py310-readme, py310-pytest, py310-minimum, py310-tutorials
3.9: py39-lint, py39-readme, py39-pytest, py39-minimum, py39-tutorials
3.8: py38-lint, py38-readme, py38-pytest, py38-minimum, py38-tutorials
Expand Down

0 comments on commit babf659

Please sign in to comment.