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
4 changes: 2 additions & 2 deletions .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
shell: "bash -l {0}"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Get conda
uses: conda-incubator/setup-miniconda@v3.0.4
uses: conda-incubator/setup-miniconda@v3.2.0
with:
python-version: ${{ matrix.python-version }}
channels: conda-forge
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -51,7 +51,7 @@ jobs:
mingw-w64-x86_64-python-pip
mingw-w64-x86_64-python-wheel

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install pybind11
# This is required because --no-build-isolation disable dependences
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
name: Build SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Build SDist
run: pipx run build --sdist

- name: Check metadata
run: pipx run twine check dist/*

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: cibw-sdist
path: dist/*.tar.gz
Expand All @@ -42,9 +42,9 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-13]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: pypa/cibuildwheel@v2.17
- uses: pypa/cibuildwheel@v3.2
env:
CIBW_ARCHS_MACOS: auto universal2

Expand All @@ -53,7 +53,7 @@ jobs:
shell: bash

- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: cibw-wheels-${{ matrix.os }}
path: wheelhouse/*.whl
Expand All @@ -66,11 +66,11 @@ jobs:
if: github.event_name == 'release' && github.event.action == 'published'

steps:
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.x"

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
with:
pattern: cibw-*
path: dist
Expand Down
Loading