From 0e375fb5d5611351eece1cc0ef9682bd7df3da15 Mon Sep 17 00:00:00 2001 From: "TEAM 4.0[bot]" Date: Mon, 10 Nov 2025 05:44:02 +0000 Subject: [PATCH 1/2] Update dependencies --- {{ cookiecutter.project_slug }}/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{ cookiecutter.project_slug }}/pyproject.toml b/{{ cookiecutter.project_slug }}/pyproject.toml index 9d3012a..4613d69 100644 --- a/{{ cookiecutter.project_slug }}/pyproject.toml +++ b/{{ cookiecutter.project_slug }}/pyproject.toml @@ -45,13 +45,13 @@ docs = [ "mkdocstrings[python] ~=0.30.1", ] testing = [ - "pytest ~=8.4", + "pytest >=8.4.0,<10", "pytest-cov ~=7.0", "tomlkit ~=0.13.3", ] dev = [ "{{ cookiecutter.project_slug }}[docs,testing]", - "pre-commit ~=4.3", + "pre-commit ~=4.4", ] [project.urls] From 40f44809b34ba3bd59a04b81f07d7f4d77e286b6 Mon Sep 17 00:00:00 2001 From: Casper Welzel Andersen <43357585+CasperWA@users.noreply.github.com> Date: Mon, 10 Nov 2025 10:29:12 +0100 Subject: [PATCH 2/2] Try using only v9 --- {{ cookiecutter.project_slug }}/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{ cookiecutter.project_slug }}/pyproject.toml b/{{ cookiecutter.project_slug }}/pyproject.toml index 4613d69..9ca5e33 100644 --- a/{{ cookiecutter.project_slug }}/pyproject.toml +++ b/{{ cookiecutter.project_slug }}/pyproject.toml @@ -45,7 +45,7 @@ docs = [ "mkdocstrings[python] ~=0.30.1", ] testing = [ - "pytest >=8.4.0,<10", + "pytest ~=9.0", "pytest-cov ~=7.0", "tomlkit ~=0.13.3", ]