Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ jobs:
allow-prereleases: true

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
enable-cache: true

Expand Down Expand Up @@ -778,7 +778,7 @@ jobs:
timeout-minutes: 90

steps:
- uses: actions/checkout@v1 # v1 is required to run inside docker
- uses: actions/checkout@v5 # v1 is required to run inside docker

- name: Install requirements
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
python-version: 3.11

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7

- name: Prepare env
run: uv pip install --python=python --system -r tests/requirements.txt
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ jobs:
fetch-depth: 0

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7

- name: Build SDist and wheels
run: |
uv tool install nox
nox -s build
nox -s build_global

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: Packages
path: dist/*
Expand All @@ -44,7 +44,7 @@ jobs:
needs: [build_wheel]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: Packages
path: dist
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
python-version: 3.8

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7

- name: Prepare env
run: uv pip install --system -r tests/requirements.txt
Expand All @@ -55,7 +55,7 @@ jobs:
python-version: 3.8

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7

- name: Prepare env
run: uv pip install --system -r tests/requirements.txt twine nox
Expand All @@ -72,13 +72,13 @@ jobs:
run: twine check dist/*

- name: Save standard package
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: standard
path: dist/pybind11-*

- name: Save global package
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: global
path: dist/*global-*
Expand All @@ -100,7 +100,7 @@ jobs:

steps:
# Downloads all to directories matching the artifact names
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6

- name: Generate artifact attestation for sdist and wheel
uses: actions/attest-build-provenance@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: brew install boost

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7
with:
enable-cache: true

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests-cibw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
submodules: true
fetch-depth: 0

- uses: pypa/cibuildwheel@v3.1
- uses: pypa/cibuildwheel@v3.2
env:
PYODIDE_BUILD_EXPORTS: whole_archive
with:
Expand All @@ -45,7 +45,7 @@ jobs:
# We have to uninstall first because GH is now using a local tap to build cmake<4, iOS needs cmake>=4
- run: brew uninstall cmake && brew install cmake

- uses: pypa/cibuildwheel@v3.1
- uses: pypa/cibuildwheel@v3.2
env:
CIBW_PLATFORM: ios
CIBW_SKIP: cp314-* # https://github.com/pypa/cibuildwheel/issues/2494
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

- run: pipx install patchelf

- uses: pypa/cibuildwheel@v3.1
- uses: pypa/cibuildwheel@v3.2
env:
CIBW_PLATFORM: android
with:
Expand Down
Loading