-
Notifications
You must be signed in to change notification settings - Fork 19
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
esutil pip install fails on github actions using ubuntu-latest (22.04) #80
Comments
thanks for this |
If the flag isn't being passed, this might be a python/pip issue |
Also, the reason that this bug occurred when GHA switched to Ubuntu 22.04 is that the default GCC version changed to 11, which uses the C++17 standard by default: |
I tagged a new version and pushed to pypi |
is this working now? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I use pip in my github actions for redmapper. And the esutil installation failed today, apparently caused by the update of
ubuntu-latest
from 20.04 to 22.04 in November/December (it was a rolling release). Specifically requestingubuntu-20.04
fixed the issue (temporarily).The pip install error was the following:
Which is strange because it should be explicitly setting c++11, but I noticed that the build line looks like:
(That is, no use of the
-std=c++11
which should be there.)The text was updated successfully, but these errors were encountered: