Skip to content

Commit c8cac99

Browse files
authored
Merge branch 'main' into ISC
2 parents 1c86621 + bd8ab85 commit c8cac99

File tree

7 files changed

+6
-13
lines changed

7 files changed

+6
-13
lines changed

pyproject.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,17 +91,16 @@ omit = ["*/vendored/*"]
9191
[tool.coverage.report]
9292
show_missing = true
9393

94-
[tool.ruff]
95-
line-length = 88
96-
src = ["src"]
97-
9894
[tool.ruff.lint]
99-
select = [
100-
"E", "F", "W", # default flake-8
95+
extend-select = [
96+
"B", # flake8-bugbear
97+
"G", # flake8-logging-format
10198
"I", # isort
99+
"ISC", # flake8-implicit-str-concat
102100
"PGH", # pygrep-hooks
101+
"RUF100", # unused noqa (yesqa)
103102
"UP", # pyupgrade
104-
"B", # flake8-bugbear
103+
"W", # pycodestyle warnings
105104
]
106105

107106
# Tox (https://tox.wiki/) is a tool for running tests in multiple virtualenvs.

tests/cli/test_pack.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from zipfile import ZipFile
88

99
import pytest
10-
1110
from wheel.cli.pack import pack
1211

1312
THISDIR = os.path.dirname(__file__)

tests/cli/test_tags.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from zipfile import ZipFile
77

88
import pytest
9-
109
from wheel.cli import main, parser
1110
from wheel.cli.tags import tags
1211
from wheel.wheelfile import WheelFile

tests/cli/test_unpack.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import stat
55

66
import pytest
7-
87
from wheel.cli.unpack import unpack
98
from wheel.wheelfile import WheelFile
109

tests/test_bdist_wheel.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
import pytest
1818
import setuptools
19-
2019
from wheel.bdist_wheel import (
2120
bdist_wheel,
2221
get_abi_tag,

tests/test_macosx_libfile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import sysconfig
66

77
import pytest
8-
98
from wheel.bdist_wheel import get_platform
109
from wheel.macosx_libfile import extract_macosx_min_system_version
1110

tests/test_wheelfile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from zipfile import ZIP_DEFLATED, ZipFile
66

77
import pytest
8-
98
from wheel.cli import WheelError
109
from wheel.wheelfile import WheelFile
1110

0 commit comments

Comments
 (0)