Skip to content

Commit a595a0f

Browse files
committed
Rename extras to align with core metadata spec.
Closes jaraco/skeleton#125.
1 parent 67aab15 commit a595a0f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ python:
33
install:
44
- path: .
55
extra_requirements:
6-
- docs
6+
- doc
77

88
# required boilerplate readthedocs/readthedocs.org#10401
99
build:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dynamic = ["version"]
2525
Homepage = "https://github.com/PROJECT_PATH"
2626

2727
[project.optional-dependencies]
28-
testing = [
28+
test = [
2929
# upstream
3030
"pytest >= 6, != 8.1.*",
3131
"pytest-checkdocs >= 2.4",
@@ -36,7 +36,7 @@ testing = [
3636

3737
# local
3838
]
39-
docs = [
39+
doc = [
4040
# upstream
4141
"sphinx >= 3.5",
4242
"jaraco.packaging >= 9.3",

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ commands =
77
pytest {posargs}
88
usedevelop = True
99
extras =
10-
testing
10+
test
1111

1212
[testenv:diffcov]
1313
description = run tests and check that diff from main is covered
@@ -22,8 +22,8 @@ commands =
2222
[testenv:docs]
2323
description = build the documentation
2424
extras =
25-
docs
26-
testing
25+
doc
26+
test
2727
changedir = docs
2828
commands =
2929
python -m sphinx -W --keep-going . {toxinidir}/build/html

0 commit comments

Comments
 (0)