-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Update setup.py to support python 3.12.3 #250
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,13 +24,13 @@ | |
license='MIT License', | ||
packages=find_packages(), | ||
|
||
python_requires='>=3.9', | ||
python_requires='<4', | ||
install_requires=[ | ||
'librosa==0.9.1', | ||
'faster-whisper==0.9.0', | ||
'faster-whisper==1.0.2', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Had issue with installing faster-whisper 0.9 on py312 so I just updated to lastest version. Fixed install issue:
|
||
'pydub==0.25.1', | ||
'wavmark==0.0.3', | ||
'numpy==1.22.0', | ||
'numpy==1.26.4', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Had issue with numpy 1.22 on py312. Updating to latest version fixed:
|
||
'eng_to_ipa==0.0.2', | ||
'inflect==7.0.0', | ||
'unidecode==1.3.7', | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here I am really leanant with required python version.You could also decide to only allow for the new version ">=3.9,<=3.12.3" but you would have the same issue for each newer python realeases...