More lenient requirement

This commit is contained in:
enhuiz 2023-01-12 20:38:16 +08:00
parent c3894a8881
commit e9ca0e7959

View File

@ -41,22 +41,22 @@ setup(
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"coloredlogs==15.0.1",
"deepspeed==0.7.7",
"diskcache==5.4.0",
"einops==0.6.0",
"encodec==0.1.1",
"g2p_en==2.1.0",
"humanize==4.4.0",
"matplotlib==3.6.0",
"numpy==1.23.3",
"omegaconf==2.2.3",
"openTSNE==0.6.2",
"pandas==1.5.0",
"soundfile==0.11.0",
"torch==1.13.0",
"torchaudio==0.13.0",
"tqdm==4.64.1",
"coloredlogs>=15.0.1",
"deepspeed>=0.7.7",
"diskcache>=5.4.0",
"einops>=0.6.0",
"encodec>=0.1.1",
"g2p_en>=2.1.0",
"humanize>=4.4.0",
"matplotlib>=3.6.0",
"numpy>=1.23.3",
"omegaconf>=2.2.3",
"openTSNE>=0.6.2",
"pandas>=1.5.0",
"soundfile>=0.11.0",
"torch>=1.13.0",
"torchaudio>=0.13.0",
"tqdm>=4.64.1",
],
url="https://github.com/enhuiz/VALL_E",
)