diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 04342990..d77dd11a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -7,7 +7,7 @@ exclude: "^({{cookiecutter\\.project_name}}|hooks/pre_gen_project.py$)" repos: - repo: https://github.com/psf/black-pre-commit-mirror - rev: "23.7.0" + rev: "23.9.1" hooks: - id: black-jupyter @@ -18,7 +18,7 @@ repos: additional_dependencies: [black==23.7.0] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.0.287" + rev: "v0.0.290" hooks: - id: ruff args: ["--fix", "--show-fixes"] diff --git a/docs/pages/guides/gha_wheels.md b/docs/pages/guides/gha_wheels.md index 87075b68..0bafe2c1 100644 --- a/docs/pages/guides/gha_wheels.md +++ b/docs/pages/guides/gha_wheels.md @@ -121,7 +121,7 @@ build_wheels: fetch-depth: 0 submodules: true - - uses: pypa/cibuildwheel@v2.15 + - uses: pypa/cibuildwheel@v2.16 - name: Upload wheels uses: actions/upload-artifact@v3 diff --git a/docs/pages/guides/style.md b/docs/pages/guides/style.md index d5218235..1a0e6f7b 100644 --- a/docs/pages/guides/style.md +++ b/docs/pages/guides/style.md @@ -106,7 +106,7 @@ Here is the snippet to add Black to your `.pre-commit-config.yml`: ```yaml - repo: https://github.com/psf/black-pre-commit-mirror - rev: "23.7.0" + rev: "23.9.1" hooks: - id: black ``` @@ -162,7 +162,7 @@ pre-commit hook. ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.0.287" + rev: "v0.0.290" hooks: - id: ruff args: ["--fix", "--show-fixes"] @@ -435,7 +435,7 @@ when clearly better (please always use them, they are faster) if you set ```yaml - repo: https://github.com/asottile/pyupgrade - rev: "v3.10.1" + rev: "v3.11.2" hooks: - id: pyupgrade args: ["--py38-plus"] 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 a9c28158..a5a1b16e 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 %} @@ -42,7 +42,7 @@ jobs: with: fetch-depth: 0 - - uses: pypa/cibuildwheel@v2.15 + - uses: pypa/cibuildwheel@v2.16 - name: Upload wheels uses: actions/upload-artifact@v3 diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index d134952e..1bab87de 100644 --- a/{{cookiecutter.project_name}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_name}}/.pre-commit-config.yaml @@ -4,7 +4,7 @@ ci: repos: - repo: https://github.com/psf/black-pre-commit-mirror - rev: "23.7.0" + rev: "23.9.1" hooks: - id: black-jupyter @@ -45,7 +45,7 @@ repos: args: [--prose-wrap=always] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.0.287" + rev: "v0.0.290" hooks: - id: ruff args: ["--fix", "--show-fixes"]