Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 0 additions & 43 deletions .cirrus.yml

This file was deleted.

10 changes: 3 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ jobs:
fail-fast: false
matrix:
os:
- "ubuntu-latest"
- "macos-latest"
- "ubuntu-22.04"
- "macos-12"
- "macos-14"
# - "windows-latest"
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -77,11 +78,6 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
steps:
- name: Get macOS arm64 wheels from Cirrus CI
uses: getsentry/action-wait-for-cirrus@v1.0.0
with:
task: cirrus_wheels_macos_arm64
timeout-minutes: 15
- uses: actions/download-artifact@v4
with:
path: dist
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ jobs:
os: [ubuntu-latest]
nox-session: ["tests"]
include:
- os: macos-latest
- os: macos-12
python-version: "3.11"
nox-session: "tests"
- os: macos-14
python-version: "3.11"
nox-session: "tests"
- os: ubuntu-latest
Expand Down Expand Up @@ -49,17 +52,17 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ matrix.nox-session }}-${{ hashFiles('**/pyproject.toml') }}-${{ hashFiles('**/noxfile.py') }}
key: ${{ matrix.os }}-pip-${{ matrix.python-version }}-${{ matrix.nox-session }}-${{ hashFiles('**/pyproject.toml') }}-${{ hashFiles('**/noxfile.py') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-${{ matrix.nox-session }}-${{ hashFiles('**/pyproject.toml') }}-
${{ runner.os }}-pip-${{ matrix.python-version }}-${{ matrix.nox-session }}-
${{ matrix.os }}-pip-${{ matrix.python-version }}-${{ matrix.nox-session }}-${{ hashFiles('**/pyproject.toml') }}-
${{ matrix.os }}-pip-${{ matrix.python-version }}-${{ matrix.nox-session }}-
- name: Cache nox session files
uses: actions/cache@v4
with:
path: .nox
key: ${{ runner.os }}-nox-${{ matrix.python-version }}-${{ matrix.nox-session }}-${{ hashFiles('**/noxfile.py') }}
key: ${{ matrix.os }}-nox-${{ matrix.python-version }}-${{ matrix.nox-session }}-${{ hashFiles('**/noxfile.py') }}
restore-keys: |
${{ runner.os }}-nox-${{ matrix.python-version }}-${{ matrix.nox-session }}-
${{ matrix.os }}-nox-${{ matrix.python-version }}-${{ matrix.nox-session }}-
- name: Install dependencies
run: |
python -m pip install -U pip
Expand Down