diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a54bacc1..53ea6690 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,7 +29,7 @@ repos: additional_dependencies: [black==24.*] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.14.4" + rev: "v0.14.5" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] diff --git a/docs/pages/guides/gha_wheels.md b/docs/pages/guides/gha_wheels.md index 261c4ad5..b008672c 100644 --- a/docs/pages/guides/gha_wheels.md +++ b/docs/pages/guides/gha_wheels.md @@ -127,7 +127,7 @@ build_wheels: - uses: astral-sh/setup-uv@v7 - - uses: pypa/cibuildwheel@v3.2 + - uses: pypa/cibuildwheel@v3.3 - name: Upload wheels uses: actions/upload-artifact@v5 diff --git a/docs/pages/guides/style.md b/docs/pages/guides/style.md index d7b20920..67f71439 100644 --- a/docs/pages/guides/style.md +++ b/docs/pages/guides/style.md @@ -111,7 +111,7 @@ Here is the snippet to add the formatter to your `.pre-commit-config.yml` ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.14.4" + rev: "v0.14.5" hooks: # id: ruff-check would go here if using both - id: ruff-format @@ -201,7 +201,7 @@ pre-commit hook. ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.14.4" + rev: "v0.14.5" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] @@ -879,7 +879,7 @@ schemas, and you can load them via URL. It work on JSON, YAML, and TOML. ```yaml - repo: https://github.com/python-jsonschema/check-jsonschema - rev: "0.34.1" + rev: "0.35.0" hooks: - id: check-dependabot - id: check-github-workflows @@ -950,7 +950,7 @@ You also might like the following hook, which cleans Jupyter outputs: ```yaml - repo: https://github.com/kynan/nbstripout - rev: "0.8.1" + rev: "0.8.2" hooks: - id: nbstripout ``` diff --git a/docs/pages/guides/tasks.md b/docs/pages/guides/tasks.md index 8c8cfe2d..c0360bf7 100644 --- a/docs/pages/guides/tasks.md +++ b/docs/pages/guides/tasks.md @@ -75,7 +75,7 @@ On GitHub Actions or Azure, pipx is available by default, so you should use action: ```yaml -- uses: wntrblm/nox@2025.10.16 +- uses: wntrblm/nox@2025.11.12 ``` You can now access all current versions of Python from nox. At least in GitHub @@ -84,7 +84,7 @@ your logs, or set `env: FORCE_COLOR: 3`[^force_color]. If you'd like to customize the versions of Python prepared for you, then use input like this: ```yaml -- uses: wntrblm/nox@2025.10.16 +- uses: wntrblm/nox@2025.11.12 with: python-versions: "3.10, 3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t, pypy-3.11" ``` diff --git a/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} b/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} index 42ffad42..31a9d463 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} +++ b/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} @@ -56,7 +56,7 @@ jobs: - uses: astral-sh/setup-uv@v7 - - uses: pypa/cibuildwheel@v3.2 + - uses: pypa/cibuildwheel@v3.3 - name: Upload wheels uses: actions/upload-artifact@v5 diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index 02431e11..fe4d0639 100644 --- a/{{cookiecutter.project_name}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_name}}/.pre-commit-config.yaml @@ -42,7 +42,7 @@ repos: args: [--prose-wrap=always] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.14.4" + rev: "v0.14.5" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] @@ -104,7 +104,7 @@ repos: additional_dependencies: ["validate-pyproject-schema-store[all]"] - repo: https://github.com/python-jsonschema/check-jsonschema - rev: "0.34.1" + rev: "0.35.0" hooks: {%- if cookiecutter.__ci == "github" %} - id: check-dependabot