diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index a20d312..a16c38e 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - platform: [ubuntu-latest, windows-latest, macos-latest] + platform: [ubuntu-latest, windows-latest, macos-12] python-version: ["3.8", "3.10"] runs-on: ${{ matrix.platform }} @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v4 - name: Get conda - uses: conda-incubator/setup-miniconda@v3.0.3 + uses: conda-incubator/setup-miniconda@v3.0.4 with: python-version: ${{ matrix.python-version }} channels: conda-forge diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index ef2507d..73dd329 100644 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - platform: [windows-latest, macos-latest, ubuntu-latest] + platform: [windows-latest, macos-13, ubuntu-latest] python-version: ["3.7", "3.11"] runs-on: ${{ matrix.platform }} diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 98e15d6..05000a2 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -38,7 +38,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest, macos-13] steps: - uses: actions/checkout@v4 @@ -46,6 +46,7 @@ jobs: - uses: pypa/cibuildwheel@v2.17 env: CIBW_ARCHS_MACOS: auto universal2 + SYSTEM_VERSION_COMPAT: 0 - name: Verify clean directory run: git diff --exit-code