Skip to content

Commit dba9f03

Browse files
committed
fixup the imports after splitting the deps parsing into a separate file
1 parent 8376c0a commit dba9f03

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

python/private/pypi/whl_installer/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ py_library(
88
"namespace_pkgs.py",
99
"platform.py",
1010
"wheel.py",
11+
"wheel_deps.py",
1112
"wheel_installer.py",
1213
],
1314
visibility = [

python/private/pypi/whl_installer/wheel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
import installer
2222
from pip._vendor.packaging.utils import canonicalize_name
2323

24-
from python.private.pypi.whl_installer.deps import Deps, FrozenDeps
2524
from python.private.pypi.whl_installer.platform import Platform
25+
from python.private.pypi.whl_installer.wheel_deps import Deps, FrozenDeps
2626

2727

2828
class Wheel:

python/private/pypi/whl_library.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -521,6 +521,7 @@ attr makes `extra_pip_args` and `download_only` ignored.""",
521521
default = [
522522
Label("//python/private/pypi/whl_installer:platform.py"),
523523
Label("//python/private/pypi/whl_installer:wheel.py"),
524+
Label("//python/private/pypi/whl_installer:wheel_deps.py"),
524525
Label("//python/private/pypi/whl_installer:wheel_installer.py"),
525526
Label("//python/private/pypi/whl_installer:arguments.py"),
526527
Label("//python/private/pypi/whl_installer:namespace_pkgs.py"),

0 commit comments

Comments
 (0)