Skip to content

Commit

Permalink
Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
hendriks73 committed Oct 11, 2024
1 parent 4ac3531 commit 889decb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 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.6, 3.7 ]
python-version: [ 3.8 ]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.7'
python-version: '3.8'
- name: Install dependencies
run: |
sudo apt-get install libsndfile1
Expand Down
5 changes: 2 additions & 3 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.6',
python_requires='>=3.8',
install_requires=requirements,
extras_require={
"testing": [
Expand All @@ -85,8 +85,7 @@
]
},
classifiers=['Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
Expand Down

0 comments on commit 889decb

Please sign in to comment.