Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-python-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inputs:
uv-version:
description: "uv version to use"
required: true
default: "0.9.28"
default: "0.10.10"

runs:
using: "composite"
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
exclude: ^{{cookiecutter.project_name}}/

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.14.14"
rev: "v0.15.6"
hooks:
- id: ruff-check
args: [--exit-non-zero-on-fix, --config=pyproject.toml]
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ['cookiecutter', 'template', 'uv']
requires-python = ">=3.10,<4.0"
dependencies = [
"click>=8.1.7",
"cookiecutter>=2.6.0",
"cookiecutter>=2.7.1",
]
classifiers = [
"Development Status :: 4 - Beta",
Expand Down Expand Up @@ -39,14 +39,14 @@ dev = [
"pytest>=9.0.2",
"pre-commit>=4.5.1",
"pytest-cookies>=0.7.0",
"tox-uv>=1.29.0",
"tox-uv>=1.33.4",
"deptry>=0.24.0",
"mypy>=1.19.1",
"pytest-cov>=7.0.0",
"ruff>=0.14.14",
"ruff>=0.15.6",
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.1",
"mkdocstrings[python]>=1.0.2",
"mkdocs-material>=9.7.5",
"mkdocstrings[python]>=1.0.3",
]

[build-system]
Expand Down
290 changes: 164 additions & 126 deletions uv.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inputs:
uv-version:
description: "uv version to use"
required: true
default: "0.9.28"
default: "0.10.10"

runs:
using: "composite"
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.14.14"
rev: "v0.15.6"
hooks:
- id: ruff-check
args: [ --exit-non-zero-on-fix ]
Expand Down
10 changes: 5 additions & 5 deletions {{cookiecutter.project_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ Documentation = "https://{{cookiecutter.author_github_handle}}.github.io/{{cooki
dev = [
"pytest>=9.0.2",
"pre-commit>=4.5.1",
"tox-uv>=1.29.0",
"tox-uv>=1.33.4",
{% if cookiecutter.deptry == 'y' %}"deptry>=0.24.0",{% endif %}
{% if cookiecutter.type_checker == "mypy" -%}
"mypy>=1.19.1",
{%- elif cookiecutter.type_checker == "ty" -%}
"ty>=0.0.14",
"ty>=0.0.23",
{%- endif %}
{% if cookiecutter.codecov == 'y' %}"pytest-cov>=7.0.0",{% endif %}
"ruff>=0.14.14",
"ruff>=0.15.6",
{% if cookiecutter.mkdocs == 'y' %}"mkdocs>=1.6.1",
"mkdocs-material>=9.7.1",
"mkdocstrings[python]>=1.0.2",{% endif %}
"mkdocs-material>=9.7.5",
"mkdocstrings[python]>=1.0.3",{% endif %}
]

[build-system]
Expand Down
Loading