Skip to content

Commit

Permalink
Update GitHub Actions
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
vstinner committed Jun 5, 2024
1 parent 937f150 commit 45a8e6e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ jobs:
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
include:
- os: macos-latest
python: 3.12
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down
1 change: 1 addition & 0 deletions make-manylinux
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ if [ -d /greenlet -a -d /opt/python ]; then
# Build in an isolated directory
mkdir /tmp/build
cd /tmp/build
git config --global --add safe.directory /greenlet/.git
git clone /greenlet greenlet
cd greenlet

Expand Down

0 comments on commit 45a8e6e

Please sign in to comment.