11[tool .poetry ]
22name = " python-template-x"
3- version = " 0.3.1 "
3+ version = " 0.4.0 "
44description = " This is a python template."
55authors = [" Mark Beacom <m@beacom.dev>" ]
66readme = " README.md"
@@ -14,7 +14,7 @@ classifiers = [
1414 " Programming Language :: Python :: 3.10" ,
1515 " Programming Language :: Python :: 3.11" ,
1616 " Programming Language :: Python :: 3.12" ,
17- # "Programming Language :: Python :: 3.13",
17+ " Programming Language :: Python :: 3.13" ,
1818 " License :: OSI Approved :: MIT License" ,
1919]
2020include = [
@@ -35,11 +35,11 @@ line_length = 120
3535
3636[tool .black ]
3737line-length = 120
38- target-version = [" py312 " ]
38+ target-version = [" py313 " ]
3939
4040[tool .ruff ]
41- # Assume Python 3.12 .
42- target-version = " py312 "
41+ # Assume Python 3.13 .
42+ target-version = " py313 "
4343# Same as our 120 Black setting.
4444line-length = 120
4545[tool .ruff .lint ]
@@ -162,29 +162,29 @@ update = ["poetry-update-core", "poetry-update-dev", "poetry-update-test", "poet
162162[tool .poetry .dependencies ]
163163python = " ^3.9"
164164pip = " >= 24.0"
165- typer = {extras = [" all" ], version = " ^0.12.3 " }
165+ typer = {extras = [" all" ], version = " ^0.12.5 " }
166166
167167[tool .poetry .group .test .dependencies ]
168- pytest = " ^8.3.2 "
168+ pytest = " ^8.3.3 "
169169pytest-cov = " ^5.0.0"
170- coverage = " ^7.6.1 "
170+ coverage = " ^7.6.3 "
171171
172172[tool .poetry .group .dev .dependencies ]
173173isort = {extras = [" toml" ], version = " ^5.13.2" }
174- black = " ^24.8 .0"
175- mypy = " ^1.11.1 "
176- debugpy = " ^1.8.5 "
177- ruff = " ^0.5.7 "
178- poethepoet = " ^0.27 .0"
174+ black = " ^24.10 .0"
175+ mypy = " ^1.12.0 "
176+ debugpy = " ^1.8.7 "
177+ ruff = " ^0.7.0 "
178+ poethepoet = " ^0.29 .0"
179179
180180[tool .poetry .group .security .dependencies ]
181- safety = " ^3.2.5 "
182- bandit = {extras = [" toml" ], version = " ^1.7.9 " }
181+ safety = " ^3.2.8 "
182+ bandit = {extras = [" toml" ], version = " ^1.7.10 " }
183183
184184[tool .poetry .group .docs .dependencies ]
185- mkdocs = " ^1.6.0 "
186- mkdocs-material = " ^9.5.31 "
187- mkdocstrings = {extras = [" python" ], version = " ^0.25 .2" }
185+ mkdocs = " ^1.6.1 "
186+ mkdocs-material = " ^9.5.41 "
187+ mkdocstrings = {extras = [" python" ], version = " ^0.26 .2" }
188188
189189[build-system ]
190190requires = [" poetry-core" ]
0 commit comments