Skip to content

Commit

Permalink
build: adapt requirements to support Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
joanise committed Nov 12, 2024
1 parent 92111e9 commit 6b3441c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion requirements.min.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# This is the minimal set of dependencies required for the readalongs package
audioop-lts; python_version>='3.13'
chevron==0.14.0
click>=8.0.4
coloredlogs>=10.0
fastapi>=0.103.0
g2p>=1.1.20230822, <3
lxml==4.9.4
lxml>=4.9.4
numpy>=1.20.2
pydantic>=1.8.2,<3
pydub>=0.23.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
entry_points={"console_scripts": ["readalongs = readalongs.cli:cli"]},
classifiers=[
"Programming Language :: Python :: 3",
*[f"Programming Language :: Python :: 3.{minor}" for minor in range(8, 13)],
*[f"Programming Language :: Python :: 3.{minor}" for minor in range(8, 14)],
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
Expand Down

0 comments on commit 6b3441c

Please sign in to comment.