11[build-system ]
2- requires = [" maturin>=1.13.3 ,<2.0" ]
2+ requires = [" maturin>=1.14.0 ,<2.0" ]
33build-backend = " maturin"
44
55[project ]
66name = " project-name"
77version = " 0.1.0"
88description = " A template mixed language (Python/Rust) project structure."
99readme = " README.md"
10- requires-python = " >=3.11 "
10+ requires-python = " >=3.12 "
1111license = { file = " LICENSE" }
1212dependencies = []
1313authors = [{ name = " Lari Liuhamo" , email = " lari.liuhamo+pypi@gmail.com" }]
@@ -17,7 +17,6 @@ classifiers = [
1717 " Development Status :: 3 - Alpha" ,
1818 " License :: OSI Approved :: MIT License" ,
1919 " Operating System :: OS Independent" ,
20- " Programming Language :: Python :: 3.11" ,
2120 " Programming Language :: Python :: 3.12" ,
2221 " Programming Language :: Python :: 3.13" ,
2322 " Programming Language :: Python :: 3.14" ,
@@ -35,14 +34,14 @@ classifiers = [
3534[dependency-groups ]
3635dev = [
3736 " jinja2>=3.1.6" ,
38- " maturin>=1.13.3 " ,
37+ " maturin>=1.14.1 " ,
3938 " mypy>=2.3.0" ,
4039 " pytest>=9.1.1" ,
4140 " pytest-benchmark>=5.2.3" ,
4241 " pytest-cov>=7.1.0" ,
4342 " pytest-xdist[psutil]>=3.8.0" ,
4443 " ruff>=0.16.1" ,
45- " sphinx>=9.0.4 " ,
44+ " sphinx>=9.1.0 " ,
4645 " tox>=4.58.0" ,
4746 " tox-gh-actions>=3.5.0" ,
4847]
@@ -55,11 +54,11 @@ omit = [".tox/*", "tests/*"]
5554[tool .maturin ]
5655auditwheel = " repair"
5756bindings = " pyo3"
58- compatibility = " manylinux2014 "
57+ compatibility = " pypi "
5958module-name = " project_name._project_name"
6059python-source = " python"
61- strip = true
6260sdist-generator = " cargo"
61+ strip = true
6362
6463[tool .pytest .ini_options ]
6564addopts = """
@@ -117,15 +116,14 @@ ban-relative-imports = "all"
117116[tool .tox ]
118117legacy_tox_ini = """
119118[tox]
120- envlist = py3{11, 12, 13}, pypy3
119+ envlist = py3{12, 13, 14}
121120skip_missing_interpreters = true
122121
123122[gh-actions]
124123python =
125- 3.11: py311
126124 3.12: py312
127125 3.13: py313
128- pypy-3.11: pypy3
126+ 3.14: py314
129127
130128[testenv]
131129pass_env =
0 commit comments