Skip to content

Commit 8025302

Browse files
authored
Update uv (#101)
* Update lock file The goal is housekeeping. Having an updated lock file before applying changes to packages feels better. * Convert uv dependency to "uv.required-version" setting Following up #96 (comment) * Update uv version
1 parent 9cef2aa commit 8025302

3 files changed

Lines changed: 1042 additions & 567 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
- name: Install uv
2424
uses: astral-sh/setup-uv@v7
2525
with:
26-
version: 0.6.11
26+
version: 0.9.18
2727
- name: Run tests
2828
run: python run tests

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ dev = [
3939
'pylint==3.3.6; python_version >= "3.9"',
4040
'ruff==0.11.2',
4141
'twine==6.1.0',
42-
'uv==0.6.11',
4342
]
4443

4544
[project.urls]
@@ -106,3 +105,7 @@ packages = [ "json5" ]
106105

107106
[tool.setuptools.dynamic]
108107
version = {attr = "json5.__version__"}
108+
109+
[tool.uv]
110+
# 0.9.0 is the first version supporting Python 3.14
111+
required-version = ">=0.9.0"

0 commit comments

Comments
 (0)