From 6b3441c7331a7030fadc7feb17f4e6f5f8e33ede Mon Sep 17 00:00:00 2001 From: Eric Joanis Date: Tue, 12 Nov 2024 11:31:55 -0500 Subject: [PATCH] build: adapt requirements to support Python 3.13 --- requirements.min.txt | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.min.txt b/requirements.min.txt index 8e9213ab..ac33550c 100644 --- a/requirements.min.txt +++ b/requirements.min.txt @@ -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 diff --git a/setup.py b/setup.py index a177fec8..1e5ab3aa 100644 --- a/setup.py +++ b/setup.py @@ -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", ],