Skip to content

Commit 23f2610

Browse files
committed
Fix CI
1 parent 8560e8b commit 23f2610

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: python -c "import sys; print(sys.version)"
3232

3333
- name: Install venv
34-
run: ./tools/uv sync --extra tools --locked
34+
run: ./tools/uv sync --locked
3535

3636
- name: Run tests without cache
3737
shell: bash

.github/workflows/ciold.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: python -c "import sys; print(sys.version)"
3232

3333
- name: Install venv
34-
run: ./tools/uv sync --extra tools --locked
34+
run: ./tools/uv sync --locked
3535

3636
- name: Run tests without cache
3737
shell: bash

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
python-version: "3.10"
2525

2626
- name: Install venv
27-
run: ./tools/uv sync --extra tools --locked
27+
run: ./tools/uv sync --locked
2828

2929
- name: Ensure linter is happy
3030
run: ./tools/ci lint
@@ -44,7 +44,7 @@ jobs:
4444
python-version: ${{ matrix.python-version }}
4545

4646
- name: Install venv
47-
run: ./tools/uv sync --extra tools --locked
47+
run: ./tools/uv sync --locked
4848

4949
- name: Ensure mypy is happy
5050
run: ./tools/ci types
@@ -60,7 +60,7 @@ jobs:
6060
python-version: "3.10"
6161

6262
- name: Install venv
63-
run: ./tools/uv sync --extra tools --locked
63+
run: ./tools/uv sync --locked
6464

6565
- name: Ensure mypy is happy
6666
run: ./tools/ci types --old
@@ -76,7 +76,7 @@ jobs:
7676
python-version: "3.10"
7777

7878
- name: Install venv
79-
run: ./tools/uv sync --extra tools --locked
79+
run: ./tools/uv sync --locked
8080

8181
- name: Ensure code is formatted
8282
run: |

0 commit comments

Comments
 (0)