Skip to content

Commit 801f19a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 6546d6b commit 801f19a

File tree

7 files changed

+6
-13
lines changed

7 files changed

+6
-13
lines changed

docs/packs/dataprep/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ dependencies = [
2525
"cython",
2626
"pandas",
2727
]
28-
2928
urls."Bug Tracker" = "https://github.com/veit/dataprep/issues"
3029
urls."Homepage" = "https://github.com/veit/dataprep"
3130
License-Expression = "BSD-3-Clause"

docs/packs/myapp/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,5 @@ classifiers = [
1616
"Programming Language :: Python :: 3.13",
1717
"Programming Language :: Python :: 3.14",
1818
]
19-
dependencies = [ ]
20-
19+
dependencies = []
2120
scripts.myapp = "myapp:main"

docs/packs/mypack/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,5 @@ classifiers = [
1616
"Programming Language :: Python :: 3.13",
1717
"Programming Language :: Python :: 3.14",
1818
]
19-
dependencies = [ ]
20-
19+
dependencies = []
2120
scripts.mypack = "mypack:main"

docs/packs/pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
test-requires = "pytest"
33
test-command = "pytest {project}/tests"
44
build-verbosity = 1
5-
65
# support Universal2 for Apple Silicon:
7-
[tool.cibuildwheel.macos]
8-
archs = [ "auto", "universal2" ]
9-
test-skip = [ "*universal2:arm64" ]
6+
macos.archs = [ "auto", "universal2" ]
7+
macos.test-skip = [ "*universal2:arm64" ]

docs/packs/templating/advanced.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Variables, for example, can be validated in a pre-generate hook:
1919
import re
2020
import sys
2121
22-
2322
MODULE_REGEX = r"^[_a-zA-Z][_a-zA-Z0-9]+$"
2423
2524
module_name = "{{ cookiecutter.module_name }}"

docs/types/sequences-sets/tuples.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ the right-hand side of the assignment operator. Here is a simple example:
102102

103103
.. code-block:: pycon
104104
105-
>>> (v, w, x, y, z) = (1, "2.", 3.0, ["4a", "4b"], (5.1, 5.2))
105+
>>> v, w, x, y, z = (1, "2.", 3.0, ["4a", "4b"], (5.1, 5.2))
106106
>>> v
107107
1
108108
>>> w

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.13",
1919
"Programming Language :: Python :: 3.14",
2020
]
21-
dependencies = [ ]
22-
21+
dependencies = []
2322
urls."Bug Tracker" = "https://github.com/veit/python-basics-tutorial/issues"
2423
urls."Homepage" = "https://github.com/veit/python-basics-tutorial/"
2524

0 commit comments

Comments
 (0)