generated from bazel-contrib/rules-template
-
-
Notifications
You must be signed in to change notification settings - Fork 34
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
[Bug]: venv requirements file path wrong #248
Comments
With the patch above This patch fixes it:
|
Will be fixed by #233 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What happened?
Version
Development (host) and target OS/architectures: linux, linux
Output of
bazel --version
: 6.3.2Version of the Aspect rules, or other relevant rules from your
WORKSPACE
orMODULE.bazel
file: 43beaccLanguage(s) and/or frameworks involved: python
How to reproduce
Workspace file:
Build file:
Any other information?
WHL_REQUIREMENTS_FILE
contains the following:Obviously, if pip will search this path, it will not find it because it didn't go through runfiles/rlocation.
PIP_FIND_LINKS
will not change anything because it's the exact same list.The following patch seems to resolve the issue. We just pass the fully rlocationed paths via
requirements.txt
:The text was updated successfully, but these errors were encountered: