Skip to content

Commit 95d526b

Browse files
committed
fixes for python 3.13
1 parent 70ab16f commit 95d526b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ 'ubuntu-22.04', 'windows-latest' ]
13-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
13+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
1414
include:
1515
- python-version: '3.7'
1616
os: 'macos-13'
@@ -24,6 +24,8 @@ jobs:
2424
os: 'macos-latest'
2525
- python-version: '3.12'
2626
os: 'macos-latest'
27+
- python-version: '3.13'
28+
os: 'macos-latest'
2729
steps:
2830
- uses: actions/checkout@v4
2931
with:

requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ chardet;python_version>='3.7'
33
charset_normalizer
44
faust-cchardet
55
ffmpeg-python
6-
future>=0.18.2
76
numpy>=1.12.0
87
pysubs2;python_version<'3.7'
98
pysubs2>=1.2.0;python_version>='3.7'

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def read_file(fname):
5454
'Programming Language :: Python :: 3.10',
5555
'Programming Language :: Python :: 3.11',
5656
'Programming Language :: Python :: 3.12',
57+
'Programming Language :: Python :: 3.13',
5758
'Topic :: Multimedia :: Sound/Audio :: Analysis',
5859
'Topic :: Multimedia :: Sound/Audio :: Speech',
5960
],

0 commit comments

Comments
 (0)