Skip to content

Commit 156985e

Browse files
committed
Make it possible to use uv for local development environments.
uv manages the venv and deps and makes it more straightforward to manage the development environment.
1 parent 7459e8d commit 156985e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ classifiers = [
2222
"Typing :: Typed",
2323
]
2424
# Install with pip install .[dev]
25-
optional-dependencies.dev = [
25+
[dependency-groups]
26+
dev = [
2627
"pre-commit",
2728
"flit",
2829
"mypy",
@@ -38,7 +39,7 @@ optional-dependencies.dev = [
3839
"markdown",
3940
"pytest-doctestplus"
4041
]
41-
optional-dependencies.docs = [
42+
docs = [
4243
"mkdocs-material==9.5.12",
4344
]
4445

0 commit comments

Comments
 (0)