-
Notifications
You must be signed in to change notification settings - Fork 18
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
InquirerPy pip package failed on bazel python_rules #57
Comments
+1 having the same issue with Poetry and GitHub Actions |
@kazhala bumping this thread, thanks |
Ahh okay makes sense. I'll have a look over the weekend and see what I can do. |
Same issue here, running the following env on an arm64 machine. Python 3.10.8
|
Closed
4 tasks
@kazhala any updates? thanks |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@kazhala First I want to thank you for modernizing PyInquirer library, as we are trying to replace PyInquirer (issue), we are facing some issues with our existing build infrastructure. Bazel python rules require the package name to match the WHEEL file directory.
In case of InquirerPy, the pip package is
InquirerPy-0.3.4-py3-none-any.whl
, bazel will try to parse the WHEEL file at:InquirerPy-0.3.4.dist-info/WHEEL
Which is different from the real location in the file (
inquirerpy-0.3.4.dist-info/WHEEL
).The main problem seems to be the mismatch of case between pip package name
InquirerPy
and internal directoryinquirerpy
.I have tested that if I rename the pip package to
inquirerpy-0.3.4-py3-none-any.whl
, then everything works.Can you help to align these two and publish a new version? Thanks
The text was updated successfully, but these errors were encountered: