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/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v5

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

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Check metadata
run: pipx run twine check dist/*

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: dist-sdist
path: dist/*.tar.gz
Expand All @@ -44,7 +44,7 @@ jobs:
with:
submodules: true

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

Expand All @@ -64,7 +64,7 @@ jobs:
echo "MACOSX_DEPLOYMENT_TARGET=11.0" >> $GITHUB_ENV

- name: Build wheels on ${{ matrix.os }} using cibuildwheel
uses: pypa/cibuildwheel@v3.1.4
uses: pypa/cibuildwheel@v3.2.1
env:
CIBW_BUILD_VERBOSITY: 1
CIBW_BUILD: "cp310-* cp311-* cp312-*"
Expand All @@ -86,7 +86,7 @@ jobs:
shell: bash

- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: wheelhouse/*.whl
name: dist-${{ matrix.os }}
Expand All @@ -101,10 +101,10 @@ jobs:
id-token: write

steps:
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: 3.13
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
path: dist
pattern: dist-*
Expand Down
Loading