-
Notifications
You must be signed in to change notification settings - Fork 248
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
Update GitHub Actions #410
Conversation
vstinner
commented
Jun 5, 2024
•
edited
Loading
edited
- Don't test old Python on macos-latest. GitHub Action macos-latest was updated to arm64 which only supports recent Python versions. Continue testing old Python versions on Ubuntu.
- Fix make-manylinux: set /greenlet as safe directory.
tests / musllinux_1_1_x86_64 and tests / musllinux_1_1_aarch64 fail with:
Should we disable these two jobs for now? cc @jamadden |
* Don't test old Python on macos-latest. GitHub Action macos-latest was updated to arm64 which only supports recent Python versions. Continue testing old Python versions on Ubuntu. * Fix make-manylinux: set /greenlet as safe directory
@jamadden: Ok, here is a PR to repair greenlet CI. |
@jamadden: Gentle ping. How can I help you to repair the greenlet CI? |
@jamadden: Hey Jason, please could you have a look to this patch? It would unlock many PR. Thank you for your time. |
os: [ubuntu-latest] | ||
include: | ||
- os: macos-latest | ||
python: 3.12 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
More surgical...
os: [ubuntu-latest] | |
include: | |
- os: macos-latest | |
python: 3.12 | |
os: [ubuntu-latest, macos-latest] | |
exclude: | |
- python-version: 3.7 | |
os: macos-latest |
Thank you very much! |