diff --git a/.github/actions/setup-python-env/action.yml b/.github/actions/setup-python-env/action.yml index 74a717d..946c702 100644 --- a/.github/actions/setup-python-env/action.yml +++ b/.github/actions/setup-python-env/action.yml @@ -9,7 +9,7 @@ inputs: uv-version: description: "uv version to use" required: true - default: "0.5.9" + default: "0.5.20" runs: using: "composite" diff --git a/pyproject.toml b/pyproject.toml index 91bdc5f..39d10aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,10 +36,10 @@ dev = [ "pre-commit>=2.20.0", "pytest-cookies>=0.6.1", "tox-uv>=1.11.3", - "deptry>=0.20.0", + "deptry>=0.22.0", "mypy>=0.991", "pytest-cov>=4.0.0", - "ruff>=0.6.9", + "ruff>=0.9.2", "mkdocs>=1.4.2", "mkdocs-material>=8.5.10", "mkdocstrings[python]>=0.19.0", diff --git a/{{cookiecutter.project_name}}/.github/actions/setup-python-env/action.yml b/{{cookiecutter.project_name}}/.github/actions/setup-python-env/action.yml index d6cb2d8..b14163d 100644 --- a/{{cookiecutter.project_name}}/.github/actions/setup-python-env/action.yml +++ b/{{cookiecutter.project_name}}/.github/actions/setup-python-env/action.yml @@ -9,7 +9,7 @@ inputs: uv-version: description: "uv version to use" required: true - default: "0.5.9" + default: "0.5.20" runs: using: "composite" diff --git a/{{cookiecutter.project_name}}/pyproject.toml b/{{cookiecutter.project_name}}/pyproject.toml index 5e95504..aec428b 100644 --- a/{{cookiecutter.project_name}}/pyproject.toml +++ b/{{cookiecutter.project_name}}/pyproject.toml @@ -28,10 +28,10 @@ dev = [ "pytest>=7.2.0", "pre-commit>=2.20.0", "tox-uv>=1.11.3", - {% if cookiecutter.deptry == 'y' %}"deptry>=0.20.0",{% endif %} + {% if cookiecutter.deptry == 'y' %}"deptry>=0.22.0",{% endif %} "mypy>=0.991", {% if cookiecutter.codecov == 'y' %}"pytest-cov>=4.0.0",{% endif %} - "ruff>=0.6.9", + "ruff>=0.9.2", {% if cookiecutter.mkdocs == 'y' %}"mkdocs>=1.4.2", "mkdocs-material>=8.5.10", "mkdocstrings[python]>=0.26.1",{% endif %}