fix: support Python 3.13 server installs
This commit is contained in:
committed by
Aaron Boxer
parent
d006d4abb3
commit
3516f663e5
@@ -1,6 +1,7 @@
|
|||||||
faster-whisper==1.2.0
|
faster-whisper==1.2.0
|
||||||
websockets
|
websockets
|
||||||
onnxruntime==1.17.0
|
onnxruntime>=1.17.0,<1.20.0; python_version < "3.10"
|
||||||
|
onnxruntime>=1.20.0,<2; python_version >= "3.10"
|
||||||
numba
|
numba
|
||||||
kaldialign
|
kaldialign
|
||||||
soundfile
|
soundfile
|
||||||
|
|||||||
@@ -28,8 +28,11 @@ setup(
|
|||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3 :: Only",
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
"Programming Language :: Python :: 3.8",
|
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
|
"Programming Language :: Python :: 3.10",
|
||||||
|
"Programming Language :: Python :: 3.11",
|
||||||
|
"Programming Language :: Python :: 3.12",
|
||||||
|
"Programming Language :: Python :: 3.13",
|
||||||
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
||||||
],
|
],
|
||||||
packages=find_packages(
|
packages=find_packages(
|
||||||
@@ -48,7 +51,8 @@ setup(
|
|||||||
"torch",
|
"torch",
|
||||||
"torchaudio",
|
"torchaudio",
|
||||||
"websockets",
|
"websockets",
|
||||||
"onnxruntime==1.17.0",
|
"onnxruntime>=1.17.0,<1.20.0; python_version < '3.10'",
|
||||||
|
"onnxruntime>=1.20.0,<2; python_version >= '3.10'",
|
||||||
"scipy",
|
"scipy",
|
||||||
"websocket-client",
|
"websocket-client",
|
||||||
"numba",
|
"numba",
|
||||||
|
|||||||
Reference in New Issue
Block a user