You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DEBUG: /home/codasip.com/timothy.hutt/.cache/bazel/_bazel_timothy.hutt/8259834f483e4f0b67749e47765325b6/external/rules_python/python/pip.bzl:46:10: pip_install is deprecated. Please switch to pip_parse. pip_install will be removed in a future release.
I did have a go at fixing this. You need to:
Replace pip_install with pip_parse everywhere in init.bzl.
It's a bit annoying that the change means you need to add extra stuff to the WORKSPACE. Unfortunately I don't know enough Bazel to find a different way.
The text was updated successfully, but these errors were encountered:
When I use this it gives the following warning:
I did have a go at fixing this. You need to:
pip_install
withpip_parse
everywhere ininit.bzl
.pip_requirements.txt
line to:pip_requirements_lock.txt
:WORKSPACE
afterinit()
:It's a bit annoying that the change means you need to add extra stuff to the
WORKSPACE
. Unfortunately I don't know enough Bazel to find a different way.The text was updated successfully, but these errors were encountered: