Skip to content

Commit

Permalink
Python 3.9/3.10/3.11.
Browse files Browse the repository at this point in the history
  • Loading branch information
hendriks73 committed Oct 11, 2024
1 parent fe23e3e commit 3a5bde8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ "3.9", "3.10" , "3.11", "3.12" ]
python-version: [ "3.9", "3.10" , "3.11" ]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Changes
=======

0.0.8:
- Moved to TensorFlow 2.17.0 and Python 3.9
- Moved to TensorFlow 2.17.0 and Python 3.9/3.10/3.11.

0.0.7:
- Added DOIs to bibtex entries.
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
packages=find_packages(exclude=['test', 'docs']),
package_data={'tempocnn': package_data},
exclude_package_data={'': ['tests', 'docs']},
python_requires='>=3.8',
python_requires='>=3.9,<3.12',
install_requires=requirements,
extras_require={
"testing": [
Expand All @@ -85,7 +85,9 @@
]
},
classifiers=['Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
Expand Down

0 comments on commit 3a5bde8

Please sign in to comment.