Skip to content

Commit 0240408

Browse files
authored
Merge pull request #670 from sirosen/fix-ci-use-uv
Update CI jobs to install tox-uv + uv
2 parents 13614ab + b00d311 commit 0240408

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
tox.ini
3333
cachedate.txt
3434
35-
- run: python -m pip install tox
35+
- run: python -m pip install tox tox-uv
3636

3737
- run: python -m tox run -e "${{ matrix.toxenv }}"
3838

@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
python-version: "3.x"
4747
- name: install requirements
48-
run: python -m pip install build tox
48+
run: python -m pip install build tox tox-uv
4949
- name: build and unpack sdist
5050
run: |
5151
python -m build --sdist
@@ -83,7 +83,7 @@ jobs:
8383
tox.ini
8484
cachedate.txt
8585
86-
- run: python -m pip install tox
86+
- run: python -m pip install tox tox-uv
8787

8888
- name: cache tox virtualenvs
8989
uses: actions/cache@v5
@@ -145,7 +145,7 @@ jobs:
145145
tox.ini
146146
cachedate.txt
147147
148-
- run: python -m pip install tox
148+
- run: python -m pip install tox tox-uv
149149

150150
- name: regenerate hook config
151151
run: tox run -e generate-hooks-config

.github/workflows/cron.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
with:
1616
python-version: '3.x'
1717

18-
- name: install tox
19-
run: python -m pip install 'tox' 'rust-just'
18+
- name: install tox, uv, and just
19+
run: python -m pip install 'tox' 'tox-uv' 'uv' 'rust-just'
2020

2121
- name: vendor-schemas
2222
run: just vendor-schemas

0 commit comments

Comments
 (0)