From 6546d6b836385b43e58c453236a631417d3d90cc Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 18:22:36 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/tox-dev/pyproject-fmt: v2.14.2 → v2.16.2](https://github.com/tox-dev/pyproject-fmt/compare/v2.14.2...v2.16.2) - [github.com/pycqa/isort: 7.0.0 → 8.0.1](https://github.com/pycqa/isort/compare/7.0.0...8.0.1) --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4dab741..7c57fda 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -15,7 +15,7 @@ repos: - id: check-added-large-files args: ['--maxkb=1024'] - repo: https://github.com/tox-dev/pyproject-fmt - rev: v2.14.2 + rev: v2.16.2 hooks: - id: pyproject-fmt - repo: https://github.com/abravalheri/validate-pyproject @@ -28,7 +28,7 @@ repos: - id: sphinx-lint types: [rst] - repo: https://github.com/pycqa/isort - rev: 7.0.0 + rev: 8.0.1 hooks: - id: isort additional_dependencies: ["toml"] From 801f19aafd682b3ed56c918e2aef35a0dc5d49eb Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 18:26:37 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- docs/packs/dataprep/pyproject.toml | 1 - docs/packs/myapp/pyproject.toml | 3 +-- docs/packs/mypack/pyproject.toml | 3 +-- docs/packs/pyproject.toml | 6 ++---- docs/packs/templating/advanced.rst | 1 - docs/types/sequences-sets/tuples.rst | 2 +- pyproject.toml | 3 +-- 7 files changed, 6 insertions(+), 13 deletions(-) diff --git a/docs/packs/dataprep/pyproject.toml b/docs/packs/dataprep/pyproject.toml index 038e953..1a78ec2 100644 --- a/docs/packs/dataprep/pyproject.toml +++ b/docs/packs/dataprep/pyproject.toml @@ -25,7 +25,6 @@ dependencies = [ "cython", "pandas", ] - urls."Bug Tracker" = "https://github.com/veit/dataprep/issues" urls."Homepage" = "https://github.com/veit/dataprep" License-Expression = "BSD-3-Clause" diff --git a/docs/packs/myapp/pyproject.toml b/docs/packs/myapp/pyproject.toml index 446907f..681b307 100644 --- a/docs/packs/myapp/pyproject.toml +++ b/docs/packs/myapp/pyproject.toml @@ -16,6 +16,5 @@ classifiers = [ "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", ] -dependencies = [ ] - +dependencies = [] scripts.myapp = "myapp:main" diff --git a/docs/packs/mypack/pyproject.toml b/docs/packs/mypack/pyproject.toml index 5f5723e..eeb00be 100644 --- a/docs/packs/mypack/pyproject.toml +++ b/docs/packs/mypack/pyproject.toml @@ -16,6 +16,5 @@ classifiers = [ "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", ] -dependencies = [ ] - +dependencies = [] scripts.mypack = "mypack:main" diff --git a/docs/packs/pyproject.toml b/docs/packs/pyproject.toml index 59e72d9..0fc7740 100644 --- a/docs/packs/pyproject.toml +++ b/docs/packs/pyproject.toml @@ -2,8 +2,6 @@ test-requires = "pytest" test-command = "pytest {project}/tests" build-verbosity = 1 - # support Universal2 for Apple Silicon: -[tool.cibuildwheel.macos] -archs = [ "auto", "universal2" ] -test-skip = [ "*universal2:arm64" ] +macos.archs = [ "auto", "universal2" ] +macos.test-skip = [ "*universal2:arm64" ] diff --git a/docs/packs/templating/advanced.rst b/docs/packs/templating/advanced.rst index 7fd8d51..17c42de 100644 --- a/docs/packs/templating/advanced.rst +++ b/docs/packs/templating/advanced.rst @@ -19,7 +19,6 @@ Variables, for example, can be validated in a pre-generate hook: import re import sys - MODULE_REGEX = r"^[_a-zA-Z][_a-zA-Z0-9]+$" module_name = "{{ cookiecutter.module_name }}" diff --git a/docs/types/sequences-sets/tuples.rst b/docs/types/sequences-sets/tuples.rst index f7b1233..5bdf1d2 100644 --- a/docs/types/sequences-sets/tuples.rst +++ b/docs/types/sequences-sets/tuples.rst @@ -102,7 +102,7 @@ the right-hand side of the assignment operator. Here is a simple example: .. code-block:: pycon - >>> (v, w, x, y, z) = (1, "2.", 3.0, ["4a", "4b"], (5.1, 5.2)) + >>> v, w, x, y, z = (1, "2.", 3.0, ["4a", "4b"], (5.1, 5.2)) >>> v 1 >>> w diff --git a/pyproject.toml b/pyproject.toml index 32e10f4..347b5ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,8 +18,7 @@ classifiers = [ "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", ] -dependencies = [ ] - +dependencies = [] urls."Bug Tracker" = "https://github.com/veit/python-basics-tutorial/issues" urls."Homepage" = "https://github.com/veit/python-basics-tutorial/"