Skip to content

Commit 34be3ab

Browse files
add required uv version to pyproject.toml and regenerate uv.lock (#63)
1 parent 5e471fc commit 34be3ab

File tree

3 files changed

+488
-372
lines changed

3 files changed

+488
-372
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ concurrency:
1313
env:
1414
PYTHONUNBUFFERED: "1"
1515
FORCE_COLOR: "1"
16-
UV_VERSION: "0.4.x"
1716

1817
jobs:
1918
generate-matrix:
@@ -27,7 +26,6 @@ jobs:
2726
uses: astral-sh/setup-uv@v5
2827
with:
2928
enable-cache: true
30-
version: ${{ env.UV_VERSION }}
3129

3230
- id: set-matrix
3331
run: |
@@ -47,7 +45,6 @@ jobs:
4745
uses: astral-sh/setup-uv@v5
4846
with:
4947
enable-cache: true
50-
version: ${{ env.UV_VERSION }}
5148

5249
- name: Run tests
5350
run: |
@@ -75,7 +72,6 @@ jobs:
7572
uses: astral-sh/setup-uv@v5
7673
with:
7774
enable-cache: true
78-
version: ${{ env.UV_VERSION }}
7975

8076
- name: Run tests with integration tests enabled
8177
env:
@@ -99,7 +95,6 @@ jobs:
9995
uses: astral-sh/setup-uv@v5
10096
with:
10197
enable-cache: true
102-
version: ${{ env.UV_VERSION }}
10398

10499
- name: Run type checks
105100
run: |
@@ -114,7 +109,6 @@ jobs:
114109
uses: astral-sh/setup-uv@v5
115110
with:
116111
enable-cache: true
117-
version: ${{ env.UV_VERSION }}
118112

119113
- name: Generate code coverage
120114
run: |

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,3 +225,6 @@ required-imports = ["from __future__ import annotations"]
225225
[tool.ruff.lint.pyupgrade]
226226
# Preserve types, even if a file imports `from __future__ import annotations`.
227227
keep-runtime-typing = true
228+
229+
[tool.uv]
230+
required-version = "<0.7"

0 commit comments

Comments
 (0)