-
Notifications
You must be signed in to change notification settings - Fork 219
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
[Bot] Update dependencies #1207
Conversation
5167afd
to
dc35cd2
Compare
I think the failed travis jobs just need to be restarted? |
ppc64le builds are failing depending on which cloud they get dispatched... restarting them keep sending them to saopaulo workers which are failing... I'll keep retrying.... |
Would you like to try kicking at Travis again? Probably getting close to a cibuildwheel release, I think pypa/cibuildwheel#854 and pypa/cibuildwheel#875 are about all that's left, and I think getting pip 21.3 at the same time might be nice. (unless this gets rebuilt automatically with the weekly bump, which is about to happen) |
dc35cd2
to
ba60e04
Compare
Wow, I can actually restart builds, nice. :) Not sure that will help, though, as in other projects Travis is loving the saopaulo workers, probably because they are always free due to always failing. :) |
I've reached out to Travis CI support, and they are investigating the issue. |
I can make a PR to move to emulated builds on GitHub actions for ppc64le. They take 3 hours or so, though that's from scratch with no caching. Why do these use "buildkit" as the build frontend, instead of through buildx, like the others? It didn't seem to be needed for GHA. |
Actually, that was for manylinux_2_24. manylinux2014 takes 5 hours and 15 minutes with no caching. 😮 |
Can you retrigger the bot? Would be nice to get pip 21.3.1 while we are at it. Workflow dispatch, I think. |
Also, |
The update dependency bot is broken: nox > python update_native_dependencies.py
Traceback (most recent call last):
File "/home/runner/work/manylinux/manylinux/update_native_dependencies.py", line 159, in <module>
main()
File "/home/runner/work/manylinux/manylinux/update_native_dependencies.py", line 150, in main
_update_cpython(args.dry_run)
File "/home/runner/work/manylinux/manylinux/update_native_dependencies.py", line 37, in _update_cpython
if latest_version > current_version:
TypeError: '>' not supported between instances of 'NoneType' and 'Version' |
Looks like |
The bug in lastversion was introduced in 1.6.0 (and retained in 2.0.0). 1.5.1 is the last working version. We can pin that to get this working again for now. |
I can't suggest on something that didn't change in the PR, but Line 50 in ba60e04
could be changed to session.install("lastversion!=1.6.0,!=2.0.0", "packaging", "requests") And the bot would need to be rerun. Or we could wait to see if there's a new release from lastversion with a fix; as soon as that's out, rerunning will automatically update this PR. Edit: changed |
Update the versions of our dependencies.
PR generated by "Update dependencies" workflow.