Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
experimental: [false]

include:
Expand Down Expand Up @@ -44,6 +44,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install cython
python -m pip install pytest
python -m pip install setuptools
python -m pip install "numpy<1.17;python_version<'3.4'" "numpy;python_version>='3.10'"

- name: Test the lib
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Release notes
- build: drop python 3.7 support
- build: drop python 3.8 support
- build: drop python 3.9 support
- build: add python 3.12 support
- build: add python 3.13 support
- build: add python 3.14 support

2.0 (2023-07-20)
----------------
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Multimedia',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Software Development :: Libraries',
Expand All @@ -82,6 +85,7 @@
setup_requires=['cython'],
install_requires=[
'Cython >= 0.27',
'setuptools',
],
extras_require={
'tests': [
Expand Down
Loading