Skip to content

Commit da9dc8c

Browse files
committed
Fixed remaining test failures
1 parent 7f632e2 commit da9dc8c

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def pytest_configure(config):
3939
'pkg_resources/_vendor',
4040
'setuptools/config/_validate_pyproject',
4141
'setuptools/modified.py',
42+
'setuptools/tests/bdist_wheel_testdata',
4243
]
4344

4445

setuptools/command/editable_wheel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
from .install_scripts import install_scripts as install_scripts_cls
6060

6161
if TYPE_CHECKING:
62-
from .._vendor.wheel.wheelfile import WheelFile # type:ignore[import-untyped]
62+
from .._vendor.wheel.wheelfile import WheelFile
6363

6464
_P = TypeVar("_P", bound=StrPath)
6565
_logger = logging.getLogger(__name__)

tools/vendored.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import subprocess
55
from textwrap import dedent
66

7-
from path import Path
7+
from pathlib import Path
88

99

1010
def remove_all(paths):

0 commit comments

Comments
 (0)