Skip to content

Commit fa36d58

Browse files
committed
chore: use dependency-groups
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent 811c9db commit fa36d58

File tree

3 files changed

+30
-26
lines changed

3 files changed

+30
-26
lines changed

.readthedocs.yml

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
version: 2
22

3-
sphinx:
4-
configuration: docs/conf.py
53

64
build:
7-
os: ubuntu-20.04
5+
os: ubuntu-22.04
86
tools:
9-
python: "3.10"
7+
python: "3.12"
8+
commands:
9+
- asdf plugin add uv
10+
- asdf install uv latest
11+
- asdf global uv latest
12+
- uv run --no-dev --group docs sphinx-build -T -b html -d docs/_build/doctrees -D language=en docs $READTHEDOCS_OUTPUT
1013

11-
python:
12-
install:
13-
- method: pip
14-
path: .
15-
extra_requirements: [docs]

pyproject.toml

+18-12
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,20 @@ dependencies = [
4343
]
4444

4545
[project.optional-dependencies]
46+
uv = [
47+
"uv >= 0.1.18",
48+
]
49+
virtualenv = [
50+
"virtualenv >= 20.0.35",
51+
]
52+
53+
[project.scripts]
54+
pyproject-build = "build.__main__:entrypoint"
55+
56+
[project.entry-points."pipx.run"]
57+
build = "build.__main__:entrypoint"
58+
59+
[dependency-groups]
4660
docs = [
4761
"furo >= 2023.08.17",
4862
"sphinx ~= 7.0",
@@ -51,7 +65,6 @@ docs = [
5165
"sphinx-issues >= 3.0.0",
5266
]
5367
test = [
54-
"build[uv, virtualenv]",
5568
"filelock >= 3",
5669
"pytest >= 6.2.4",
5770
"pytest-cov >= 2.12",
@@ -66,24 +79,17 @@ test = [
6679
"setuptools_scm >= 6",
6780
]
6881
typing = [
69-
"build[uv]",
7082
"importlib-metadata >= 5.1",
7183
"mypy ~= 1.9.0",
7284
"tomli",
7385
"typing-extensions >= 3.7.4.3",
74-
]
75-
uv = [
7686
"uv >= 0.1.18",
77-
]
78-
virtualenv = [
7987
"virtualenv >= 20.0.35",
8088
]
81-
82-
[project.scripts]
83-
pyproject-build = "build.__main__:entrypoint"
84-
85-
[project.entry-points."pipx.run"]
86-
build = "build.__main__:entrypoint"
89+
dev = [
90+
{ include-group = "test" },
91+
{ include-group = "typing" },
92+
]
8793

8894
[tool.flit.sdist]
8995
include = ["tests/", ".gitignore", "CHANGELOG.rst", "docs/", ".dockerignore", "tox.ini"]

tox.ini

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ description =
1515
run test suite with {basepython}
1616
deps =
1717
pip
18-
extras =
18+
groups =
1919
test
2020
pass_env =
2121
LC_ALL
@@ -48,7 +48,7 @@ commands =
4848

4949
[testenv:type]
5050
description = run type check on code base
51-
extras =
51+
groups =
5252
typing
5353
set_env =
5454
PYTHONWARNDEFAULTENCODING =
@@ -58,7 +58,7 @@ commands =
5858
[testenv:docs]
5959
description = build documentations
6060
base_python = python3.12
61-
extras =
61+
groups =
6262
docs
6363
commands =
6464
sphinx-build -n docs {envtmpdir} {posargs:-W}
@@ -83,8 +83,8 @@ description = generate a DEV environment
8383
package = editable
8484
deps =
8585
virtualenv>=20.0.34
86-
extras =
87-
doc
86+
groups =
87+
docs
8888
test
8989
commands =
9090
python -m pip list --format=columns

0 commit comments

Comments
 (0)