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/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
2 changes: 1 addition & 1 deletion .github/workflows/nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ 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: |
Expand Down
4 changes: 2 additions & 2 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 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