Skip to content

Commit 16b0e56

Browse files
committed
chore: upgrade deps and add uv lock file
1 parent 1d571b1 commit 16b0e56

File tree

3 files changed

+1159
-9
lines changed

3 files changed

+1159
-9
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
22+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2323
os: [macOS-latest, ubuntu-latest, windows-latest]
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
- name: Set Up Python ${{ matrix.python-version }}
2929
uses: actions/setup-python@v5
3030
with:
@@ -46,7 +46,7 @@ jobs:
4646
needs: test
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v5
5050
- uses: actions/setup-python@v5
5151
with:
5252
python-version: '3.12'

pyproject.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,21 @@ classifiers = [
1818
"Topic :: Software Development :: Libraries",
1919
]
2020
requires-python = ">=3.9"
21-
dependencies = [
22-
]
21+
dependencies = []
2322

2423
[project.optional-dependencies]
2524
dev = [
2625
"attribution==1.8.0",
2726
"build>=1.2",
28-
"coverage[toml]==7.8.0",
27+
"coverage[toml]==7.10.6",
2928
"flit==3.12.0",
30-
"ruff==0.11.12",
31-
"mypy==1.16.0",
29+
"ruff==0.12.11",
30+
"mypy==1.17.1",
3231
"ufmt==2.8.0",
3332
"usort==1.0.8.post1",
3433
]
3534
docs = [
36-
"sphinx==8.1.3",
35+
"sphinx==8.1.3; python_version >= '3.10'",
3736
"sphinx-mdinclude==0.6.2",
3837
]
3938

0 commit comments

Comments
 (0)