Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- { os: ubuntu-latest, environment: 'py312' }
- { os: ubuntu-latest, environment: 'py313' }
- { os: ubuntu-latest, environment: 'py314' }
- { os: windows-latest, environment: 'py314' }
- { os: windows-2022, environment: 'py314' }
- { os: macos-latest, environment: 'py314' }
- { os: ubuntu-latest, environment: 'oldies' }
- { os: ubuntu-latest, environment: 'nightly' }
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
- { conda_build_yml: osx_64_python3.11.____cpython, os: macos-latest, conda-build-args: ' --no-test' }
- { conda_build_yml: osx_arm64_python3.10.____cpython, os: macos-latest, conda-build-args: '' }
- { conda_build_yml: osx_arm64_python3.13.____cp313, os: macos-latest, conda-build-args: '' }
- { conda_build_yml: win_64_python3.10.____cpython, os: windows-latest, conda-build-args: '' }
- { conda_build_yml: win_64_python3.13.____cp313, os: windows-latest, conda-build-args: '' }
- { conda_build_yml: win_64_python3.10.____cpython, os: windows-2022, conda-build-args: '' }
- { conda_build_yml: win_64_python3.13.____cp313, os: windows-2022, conda-build-args: '' }

steps:
- name: Checkout branch
Expand All @@ -35,7 +35,7 @@ jobs:
run: git fetch --prune --unshallow
- uses: mamba-org/setup-micromamba@d7c9bd84e824b79d2af72a2d4196c7f4300d3476
with:
init-shell: ${{ matrix.os == 'windows-latest' && 'cmd.exe' || 'bash' }}
init-shell: ${{ matrix.os == 'windows-2022' && 'cmd.exe' || 'bash' }}
micromamba-version: 1.5.10-0
environment-name: build
create-args: conda-build
Expand All @@ -49,14 +49,14 @@ jobs:
- "${CONDA_BUILD_SYSROOT}"
EOF
- name: Build conda package (unix)
if: matrix.os != 'windows-latest'
if: matrix.os != 'windows-2022'
shell: bash -el {0}
run: >-
conda-build
-m ".ci_support/${{ matrix.CONDA_BUILD_YML }}.yaml"${{ matrix.conda-build-args }}
conda.recipe
- name: Build conda package (windows)
if: matrix.os == 'windows-latest'
if: matrix.os == 'windows-2022'
shell: cmd /C CALL {0}
run: >-
conda-build
Expand Down
Loading