Skip to content

Commit f640982

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

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.11",
3232
"Programming Language :: Python :: 3.12",
3333
"Programming Language :: Python :: 3.13",
34+
"Programming Language :: Python :: 3.14",
3435
]
3536
dynamic = [
3637
"version",

testdata/empty_project/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.11",
2121
"Programming Language :: Python :: 3.12",
2222
"Programming Language :: Python :: 3.13",
23+
"Programming Language :: Python :: 3.14",
2324
]
2425
scripts.empty-project = "empty_project.main:cli"
2526
entry-points."pipx.run".empty-project = "empty_project.main:cli"

tests/test_package_specifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,6 @@ def test_parse_specifier_for_install(
272272
root,
273273
):
274274
monkeypatch.chdir(root)
275-
[package_or_url_out, pip_args_out] = parse_specifier_for_install(package_spec_in, pip_args_in)
275+
[_package_or_url_out, _pip_args_out] = parse_specifier_for_install(package_spec_in, pip_args_in)
276276
if warning_str is not None:
277277
assert warning_str in caplog.text

0 commit comments

Comments
 (0)