Skip to content

Enforce ruff/flake8-implicit-str-concat rules (ISC) #5013

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ extend-select = [

# local
"ANN2", # missing-return-type-*
"ISC", # flake8-implicit-str-concat
"PERF", # Perflint
"PGH", # pygrep-hooks (blanket-* rules)
"PT", # flake8-pytest-style
Expand Down
2 changes: 1 addition & 1 deletion setuptools/command/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __getattr__(name: str): # pragma: no cover
if name == "_install":
SetuptoolsDeprecationWarning.emit(
"`setuptools.command._install` was an internal implementation detail "
+ "that was left in for numpy<1.9 support.",
"that was left in for numpy<1.9 support.",
due_date=(2025, 5, 2), # Originally added on 2024-11-01
)
return orig.install
Expand Down
2 changes: 1 addition & 1 deletion setuptools/command/sdist.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class sdist(orig.sdist):
(
'keep-temp',
'k',
"keep the distribution tree around after creating " + "archive file(s)",
"keep the distribution tree around after creating archive file(s)",
),
(
'dist-dir=',
Expand Down
Loading