Skip to content

Commit 6fbe5fc

Browse files
committed
Updated imports in bdist_wheel tests
1 parent c8e005d commit 6fbe5fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setuptools/tests/test_bdist_wheel.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
remove_readonly,
2323
remove_readonly_exc,
2424
)
25-
from setuptools._vendor.packaging import tags
26-
from setuptools._vendor.wheel.wheelfile import WheelFile
25+
from setuptools.extern.packaging import tags
26+
from setuptools.extern.wheel.wheelfile import WheelFile
2727

2828
DEFAULT_FILES = {
2929
"dummy_dist-1.0.dist-info/top_level.txt",
@@ -455,6 +455,6 @@ def _fake_import(name: str, *args, **kwargs):
455455
if module.startswith("wheel"):
456456
monkeypatch.delitem(sys.modules, module)
457457

458-
from wheel import bdist_wheel
458+
from setuptools.extern.wheel import bdist_wheel
459459

460460
assert bdist_wheel

0 commit comments

Comments
 (0)