Skip to content

Commit

Permalink
.github/workflows/ci-sage.yml: Run on macos-13 and -latest, update se…
Browse files Browse the repository at this point in the history
…tup-python action, test python 3.13-dev
  • Loading branch information
Matthias Koeppe committed Jun 9, 2024
1 parent 3c6a507 commit cb36458
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci-sage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13-dev']
steps:
- name: Set up the repository
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down Expand Up @@ -177,11 +177,12 @@ jobs:
needs: [dist, linux]

macos-without-sage:
runs-on: macos-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
os: ['macos-13', 'macos-latest']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13-dev']
env:
# Work around https://github.com/sagemath/cysignals/issues/179
ARCHFLAGS: "-arch x86_64"
Expand All @@ -192,7 +193,7 @@ jobs:
submodules: recursive
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit cb36458

Please sign in to comment.