@@ -13,28 +13,32 @@ classifiers = [
1313 ' Programming Language :: Python :: 3.11' ,
1414 ' Programming Language :: Python :: 3.12' ,
1515 ' Programming Language :: Python :: 3.13' ,
16+ ' Programming Language :: Python :: 3.14' ,
1617 ' Topic :: Scientific/Engineering :: Artificial Intelligence' ,
1718]
1819keywords = [ ' copulas' ]
1920dynamic = [" version" ]
2021license = { text = ' BSL-1.1' }
21- requires-python = ' >=3.9,<3.14 '
22+ requires-python = ' >=3.9,<3.15 '
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'" ,
2627 " numpy>=1.26.0;python_version>='3.12' and python_version<'3.13'" ,
27- " numpy>=2.1.0;python_version>='3.13'" ,
28+ " numpy>=2.1.0;python_version>='3.13' and python_version<'3.14'" ,
29+ " numpy>=2.3.2;python_version>='3.14'" ,
2830 " pandas>=1.4.0;python_version<'3.11'" ,
2931 " pandas>=1.5.0;python_version>='3.11' and python_version<'3.12'" ,
3032 " pandas>=2.1.1;python_version>='3.12' and python_version<'3.13'" ,
31- " pandas>=2.2.3;python_version>='3.13'" ,
33+ " pandas>=2.2.3;python_version>='3.13' and python_version<'3.14'" ,
34+ " pandas>=2.3.3;python_version>='3.14'" ,
3235 " plotly>=5.10.0;python_version<'3.13'" ,
3336 " plotly>=5.12.0;python_version>='3.13'" ,
3437 " scipy>=1.7.3;python_version<'3.10'" ,
3538 " scipy>=1.9.2;python_version>='3.10' and python_version<'3.12'" ,
3639 " scipy>=1.12.0;python_version>='3.12' and python_version<'3.13'" ,
37- " scipy>=1.14.1;python_version>='3.13'" ,
40+ " scipy>=1.14.1;python_version>='3.13' and python_version<'3.14'" ,
41+ " scipy>=1.16.1;python_version>='3.14'" ,
3842]
3943
4044[project .urls ]
@@ -176,7 +180,7 @@ preview = true
176180line-length = 100
177181indent-width = 4
178182src = [" copulas" ]
179- target-version = " py312 "
183+ target-version = " py314 "
180184exclude = [
181185 " docs" ,
182186 " .git" ,
@@ -208,7 +212,6 @@ ignore = [
208212 # pydocstyle
209213 " D107" , # Missing docstring in __init__
210214 " D417" , # Missing argument descriptions in the docstring, this is a bug from pydocstyle: https://github.com/PyCQA/pydocstyle/issues/449
211- " PD901" ,
212215 " PD101" ,
213216]
214217
0 commit comments