Skip to content

Commit b12fa62

Browse files
[pre-commit.ci] pre-commit autoupdate (#3300)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 264d44f commit b12fa62

File tree

6 files changed

+13
-14
lines changed

6 files changed

+13
-14
lines changed

.pre-commit-config.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repos:
55
- id: end-of-file-fixer
66
- id: trailing-whitespace
77
- repo: https://github.com/python-jsonschema/check-jsonschema
8-
rev: 0.28.5
8+
rev: 0.28.6
99
hooks:
1010
- id: check-github-workflows
1111
args: [ "--verbose" ]
@@ -20,17 +20,17 @@ repos:
2020
- id: tox-ini-fmt
2121
args: ["-p", "fix"]
2222
- repo: https://github.com/tox-dev/pyproject-fmt
23-
rev: "2.1.3"
23+
rev: "2.1.4"
2424
hooks:
2525
- id: pyproject-fmt
2626
- repo: https://github.com/astral-sh/ruff-pre-commit
27-
rev: "v0.4.10"
27+
rev: "v0.5.0"
2828
hooks:
2929
- id: ruff-format
3030
- id: ruff
3131
args: ["--fix", "--unsafe-fixes", "--exit-non-zero-on-fix"]
3232
- repo: https://github.com/asottile/blacken-docs
33-
rev: 1.16.0
33+
rev: 1.18.0
3434
hooks:
3535
- id: blacken-docs
3636
additional_dependencies: [black==24.4.2]

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def setup(app: Sphinx) -> None:
9898
root, exe = here.parent, Path(sys.executable)
9999
towncrier = exe.with_name(f"towncrier{exe.suffix}")
100100
cmd = [str(towncrier), "build", "--draft", "--version", "NEXT"]
101-
new = check_output(cmd, cwd=root, text=True, stderr=subprocess.DEVNULL) # noqa: S603
101+
new = check_output(cmd, cwd=root, text=True, stderr=subprocess.DEVNULL)
102102
(root / "docs" / "_draft.rst").write_text("" if "No significant changes" in new else new)
103103

104104
class PatchedPythonDomain(PythonDomain):

pyproject.toml

+4-5
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,11 @@ dependencies = [
5454
"chardet>=5.2",
5555
"colorama>=0.4.6",
5656
"filelock>=3.15.4",
57-
"importlib-metadata>=7.2; python_version<'3.8'",
5857
"packaging>=24.1",
5958
"platformdirs>=4.2.2",
6059
"pluggy>=1.5",
6160
"pyproject-api>=1.7.1",
6261
"tomli>=2.0.1; python_version<'3.11'",
63-
"typing-extensions>=4.12.2; python_version<'3.8'",
6462
"virtualenv>=20.26.3",
6563
]
6664
optional-dependencies.docs = [
@@ -78,7 +76,7 @@ optional-dependencies.testing = [
7876
"covdefaults>=2.3",
7977
"detect-test-pollution>=1.2",
8078
"devpi-process>=1",
81-
"diff-cover>=9",
79+
"diff-cover>=9.1",
8280
"distlib>=0.3.8",
8381
"flaky>=3.8.1",
8482
"hatch-vcs>=0.4",
@@ -89,8 +87,8 @@ optional-dependencies.testing = [
8987
"pytest-mock>=3.14",
9088
"pytest-xdist>=3.6.1",
9189
"re-assert>=1.1",
92-
"setuptools>=70.1",
93-
"time-machine>=2.14.1; implementation_name!='pypy'",
90+
"setuptools>=70.2",
91+
"time-machine>=2.14.2; implementation_name!='pypy'",
9492
"wheel>=0.43",
9593
]
9694
urls.Documentation = "https://tox.wiki"
@@ -136,6 +134,7 @@ lint.ignore = [
136134
"PLR0917", ## Too many positional arguments
137135
"S104", # Possible binding to all interfaces
138136
"S404", # Using subprocess is alright.
137+
"S603", # Using subprocess is alright.
139138
]
140139
lint.per-file-ignores."tests/**/*.py" = [
141140
"D", # don't care about documentation in tests

src/tox/execute/local_sub_process/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def __enter__(self) -> ExecuteStatus:
206206
stdout, stderr = self.get_stream_file_no("stdout"), self.get_stream_file_no("stderr")
207207
try:
208208
self.process = process = Popen(
209-
self.cmd, # noqa: S603
209+
self.cmd,
210210
stdout=next(stdout),
211211
stderr=next(stderr),
212212
stdin={StdinSource.USER: None, StdinSource.OFF: DEVNULL, StdinSource.API: PIPE}[self.request.stdin],

tasks/release.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def get_upstream(repo: Repo) -> Remote:
5757

5858
def release_changelog(repo: Repo, version: Version) -> Commit:
5959
print("generate release commit") # noqa: T201
60-
check_call(["towncrier", "build", "--yes", "--version", version.public], cwd=str(ROOT_SRC_DIR)) # noqa: S607, S603
60+
check_call(["towncrier", "build", "--yes", "--version", version.public], cwd=str(ROOT_SRC_DIR)) # noqa: S607
6161
return repo.index.commit(f"release {version}")
6262

6363

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ commands =
5151
[testenv:type]
5252
description = run type check on code base
5353
deps =
54-
mypy==1.10
54+
mypy==1.10.1
5555
types-cachetools>=5.3.0.7
5656
types-chardet>=5.0.4.6
5757
commands =
@@ -73,7 +73,7 @@ skip_install = true
7373
deps =
7474
build[virtualenv]>=1.2.1
7575
check-wheel-contents>=0.6
76-
twine>=5.1
76+
twine>=5.1.1
7777
commands =
7878
python -m build -o {envtmpdir} -s -w .
7979
twine check {envtmpdir}{/}*

0 commit comments

Comments
 (0)