Skip to content

Commit c0e28d3

Browse files
fix: support uv 0.4.10+ on Linux and update dependencies (#2008)
1 parent 8c42e79 commit c0e28d3

12 files changed

+41
-43
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
python-version: ${{ matrix.python_version }}
5252

53-
- uses: yezz123/setup-uv@v4
53+
- uses: astral-sh/setup-uv@v3
5454

5555
# free some space to prevent reaching GHA disk space limits
5656
- name: Clean docker images
@@ -109,7 +109,7 @@ jobs:
109109
output-dir: wheelhouse_config_file
110110
config-file: sample_proj/cibw.toml
111111

112-
- name: Check Action artefacts
112+
- name: Check Action artifacts
113113
shell: bash
114114
run: |
115115
test $(find wheelhouse -name '*.whl' | wc -l) -ge 1

cibuildwheel/linux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def build_in_container(
345345
venv_dir = testing_temp_dir / "venv"
346346

347347
if use_uv:
348-
container.call(["uv", "venv", venv_dir], env=env)
348+
container.call(["uv", "venv", venv_dir, "--python", python_bin / "python"], env=env)
349349
else:
350350
# Use embedded dependencies from virtualenv to ensure determinism
351351
venv_args = ["--no-periodic-update", "--pip=embed"]

cibuildwheel/resources/constraints-pyodide312.txt

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ httpcore==1.0.5
3333
# via httpx
3434
httpx==0.27.2
3535
# via unearth
36-
idna==3.8
36+
idna==3.10
3737
# via
3838
# anyio
3939
# httpx
@@ -54,13 +54,13 @@ packaging==24.1
5454
# unearth
5555
pip==24.2
5656
# via -r .nox/update_constraints/tmp/constraints-pyodide.in
57-
platformdirs==4.3.2
57+
platformdirs==4.3.3
5858
# via virtualenv
59-
pydantic==2.9.0
59+
pydantic==2.9.1
6060
# via
6161
# pyodide-build
6262
# pyodide-lock
63-
pydantic-core==2.23.2
63+
pydantic-core==2.23.3
6464
# via pydantic
6565
pygments==2.18.0
6666
# via rich
@@ -80,7 +80,7 @@ requests==2.32.3
8080
# via pyodide-build
8181
resolvelib==1.0.1
8282
# via pyodide-build
83-
rich==13.8.0
83+
rich==13.8.1
8484
# via
8585
# pyodide-build
8686
# pyodide-cli
@@ -100,18 +100,16 @@ typer==0.12.5
100100
# auditwheel-emscripten
101101
# pyodide-build
102102
# pyodide-cli
103-
types-requests==2.32.0.20240907
103+
types-requests==2.32.0.20240914
104104
# via pyodide-build
105105
typing-extensions==4.12.2
106106
# via
107107
# pydantic
108108
# pydantic-core
109109
# typer
110-
tzdata==2024.1
111-
# via pydantic
112110
unearth==0.17.2
113111
# via pyodide-build
114-
urllib3==2.2.2
112+
urllib3==2.2.3
115113
# via
116114
# requests
117115
# types-requests

cibuildwheel/resources/constraints-python310.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ distlib==0.3.8
1010
# via virtualenv
1111
filelock==3.16.0
1212
# via virtualenv
13-
importlib-metadata==8.4.0
13+
importlib-metadata==8.5.0
1414
# via build
1515
macholib==1.16.3
1616
# via delocate
@@ -20,7 +20,7 @@ packaging==24.1
2020
# delocate
2121
pip==24.2
2222
# via -r cibuildwheel/resources/constraints.in
23-
platformdirs==4.3.2
23+
platformdirs==4.3.3
2424
# via virtualenv
2525
pyproject-hooks==1.1.0
2626
# via build
@@ -30,5 +30,5 @@ typing-extensions==4.12.2
3030
# via delocate
3131
virtualenv==20.26.4
3232
# via -r cibuildwheel/resources/constraints.in
33-
zipp==3.20.1
33+
zipp==3.20.2
3434
# via importlib-metadata

cibuildwheel/resources/constraints-python311.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ packaging==24.1
1818
# delocate
1919
pip==24.2
2020
# via -r cibuildwheel/resources/constraints.in
21-
platformdirs==4.3.2
21+
platformdirs==4.3.3
2222
# via virtualenv
2323
pyproject-hooks==1.1.0
2424
# via build

cibuildwheel/resources/constraints-python312.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ packaging==24.1
1818
# delocate
1919
pip==24.2
2020
# via -r cibuildwheel/resources/constraints.in
21-
platformdirs==4.3.2
21+
platformdirs==4.3.3
2222
# via virtualenv
2323
pyproject-hooks==1.1.0
2424
# via build

cibuildwheel/resources/constraints-python313.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ packaging==24.1
1818
# delocate
1919
pip==24.2
2020
# via -r cibuildwheel/resources/constraints.in
21-
platformdirs==4.3.2
21+
platformdirs==4.3.3
2222
# via virtualenv
2323
pyproject-hooks==1.1.0
2424
# via build

cibuildwheel/resources/constraints-python38.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ distlib==0.3.8
1010
# via virtualenv
1111
filelock==3.16.0
1212
# via virtualenv
13-
importlib-metadata==8.4.0
13+
importlib-metadata==8.5.0
1414
# via build
1515
macholib==1.16.3
1616
# via delocate
@@ -20,7 +20,7 @@ packaging==24.1
2020
# delocate
2121
pip==24.2
2222
# via -r cibuildwheel/resources/constraints.in
23-
platformdirs==4.3.2
23+
platformdirs==4.3.3
2424
# via virtualenv
2525
pyproject-hooks==1.1.0
2626
# via build
@@ -30,5 +30,5 @@ typing-extensions==4.12.2
3030
# via delocate
3131
virtualenv==20.26.4
3232
# via -r cibuildwheel/resources/constraints.in
33-
zipp==3.20.1
33+
zipp==3.20.2
3434
# via importlib-metadata

cibuildwheel/resources/constraints-python39.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ distlib==0.3.8
1010
# via virtualenv
1111
filelock==3.16.0
1212
# via virtualenv
13-
importlib-metadata==8.4.0
13+
importlib-metadata==8.5.0
1414
# via build
1515
macholib==1.16.3
1616
# via delocate
@@ -20,7 +20,7 @@ packaging==24.1
2020
# delocate
2121
pip==24.2
2222
# via -r cibuildwheel/resources/constraints.in
23-
platformdirs==4.3.2
23+
platformdirs==4.3.3
2424
# via virtualenv
2525
pyproject-hooks==1.1.0
2626
# via build
@@ -30,5 +30,5 @@ typing-extensions==4.12.2
3030
# via delocate
3131
virtualenv==20.26.4
3232
# via -r cibuildwheel/resources/constraints.in
33-
zipp==3.20.1
33+
zipp==3.20.2
3434
# via importlib-metadata

cibuildwheel/resources/constraints.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ packaging==24.1
1818
# delocate
1919
pip==24.2
2020
# via -r cibuildwheel/resources/constraints.in
21-
platformdirs==4.3.2
21+
platformdirs==4.3.3
2222
# via virtualenv
2323
pyproject-hooks==1.1.0
2424
# via build

0 commit comments

Comments
 (0)