@@ -13,24 +13,28 @@ classifiers = [
1313 ' Programming Language :: Python :: 3.10' ,
1414 ' Programming Language :: Python :: 3.11' ,
1515 ' Programming Language :: Python :: 3.12' ,
16+ ' Programming Language :: Python :: 3.13' ,
1617 ' Topic :: Scientific/Engineering :: Artificial Intelligence' ,
1718]
1819keywords = [' deepecho' , ' DeepEcho' ]
1920dynamic = [' version' ]
2021license = { text = ' BSL-1.1' }
21- requires-python = ' >=3.8,<3.13 '
22+ requires-python = ' >=3.8,<3.14 '
2223readme = ' README.md'
2324dependencies = [
2425 " numpy>=1.21.0;python_version<'3.10'" ,
2526 " numpy>=1.23.3;python_version>='3.10' and python_version<'3.12'" ,
26- " numpy>=1.26.0;python_version>='3.12'" ,
27+ " numpy>=1.26.0;python_version>='3.12' and python_version<'3.13'" ,
28+ " numpy>=2.1.0;python_version>='3.13'" ,
2729 " pandas>=1.4.0;python_version<'3.11'" ,
2830 " pandas>=1.5.0;python_version>='3.11' and python_version<'3.12'" ,
29- " pandas>=2.1.1;python_version>='3.12'" ,
31+ " pandas>=2.1.1;python_version>='3.12' and python_version<'3.13'" ,
32+ " pandas>=2.2.3;python_version>='3.13'" ,
3033 " torch>=1.9.0;python_version<'3.10'" ,
3134 " torch>=1.11.0;python_version>='3.10' and python_version<'3.11'" ,
3235 " torch>=2.0.0;python_version>='3.11' and python_version<'3.12'" ,
33- " torch>=2.2.0;python_version>='3.12'" ,
36+ " torch>=2.2.0;python_version>='3.12' and python_version<'3.13'" ,
37+ " torch>=2.6.0;python_version>='3.13'" ,
3438 ' tqdm>=4.29' ,
3539]
3640
0 commit comments