@@ -26,6 +26,7 @@ classifiers = [
2626 " Programming Language :: Python :: 3.11" ,
2727 " Programming Language :: Python :: 3.12" ,
2828 " Programming Language :: Python :: 3.13" ,
29+ " Programming Language :: Python :: 3.14" ,
2930 " Topic :: Software Development" ,
3031 " Topic :: Software Development :: Libraries :: Python Modules" ,
3132 " Topic :: Software Development :: Pre-processors" ,
@@ -38,16 +39,19 @@ classifiers = [
3839"Author" = " https://github.com/MarshalX"
3940
4041[dependency-groups ]
41- dev = [" maturin>=1.2 ,<2.0" ]
42+ dev = [" maturin>=1.8.7 ,<2.0" ]
4243testing = [
4344 { include-group = " dev" },
44- " pytest==8.3.5" ,
45- " pytest-benchmark==4.0.0" ,
46- " pytest-xdist==3.6.1" ,
45+ ' pytest==8.3.5; python_version == "3.8"' ,
46+ ' pytest==8.4.1; python_version >= "3.9"' ,
47+ ' pytest-benchmark==4.0.0; python_version == "3.8"' ,
48+ ' pytest-benchmark==5.1.0; python_version >= "3.9"' ,
49+ ' pytest-xdist==3.6.1; python_version == "3.8"' ,
50+ ' pytest-xdist==3.8.0; python_version >= "3.9"' ,
4751]
4852codspeed = [
4953 # only run on CI with the latest Python version
50- ' pytest-codspeed==3.2.0; python_version == "3.13 " and implementation_name == "cpython"' ,
54+ ' pytest-codspeed==3.2.0; python_version == "3.14 " and implementation_name == "cpython"' ,
5155]
5256
5357all = [
@@ -68,5 +72,5 @@ bindings = "pyo3"
6872features = [" pyo3/extension-module" ]
6973
7074[build-system ]
71- requires = [" maturin>=1.2 ,<2.0" ]
75+ requires = [" maturin>=1.8.7 ,<2.0" ]
7276build-backend = " maturin"
0 commit comments