@@ -78,7 +78,7 @@ build_task:
78
78
container : {image: "python:3.11-bullseye"}
79
79
clone_script : *clone
80
80
<< : *task-template
81
- install_script : pip install tox
81
+ install_script : pip install tox tox-uv
82
82
build_script :
83
83
- tox -e clean,lint,typecheck,build
84
84
- tar czf dist.tar.gz dist
@@ -102,7 +102,7 @@ linux_task:
102
102
container : {image: "python:3.13-rc-bookworm"}
103
103
allow_failures : true # RC
104
104
install_script :
105
- - python -m pip install --upgrade pip tox pipx
105
+ - python -m pip install --upgrade pip tox tox-uv pipx
106
106
<< : *test-template
107
107
alias : base-test
108
108
@@ -149,7 +149,7 @@ windows_task:
149
149
- choco install -y --no-progress python3 --version=3.12.5 --params "/NoLockdown"
150
150
- choco install -y --no-progress curl
151
151
- pip install --upgrade certifi
152
- - python -m pip install -U pip tox pipx
152
+ - python -m pip install -U pip tox tox-uv pipx
153
153
<< : *test-template
154
154
depends_on : [build, base-test]
155
155
@@ -168,7 +168,7 @@ linkcheck_task:
168
168
depends_on : [finalize]
169
169
allow_failures : true
170
170
<< : *task-template
171
- install_script : pip install tox
171
+ install_script : pip install tox tox-uv
172
172
download_artifact_script : *download-artifact
173
173
linkcheck_script : tox --installpkg dist/*.whl -e linkcheck -- -q
174
174
0 commit comments