File tree Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 50
50
- python : pypy3.10
51
51
platform : ubuntu-latest
52
52
runs-on : ${{ matrix.platform }}
53
- continue-on-error : ${{ matrix.python == '3.13' || (matrix.python == '3.8' || matrix.python == '3.9') && matrix.platform == 'macos-latest' }}
53
+ continue-on-error : ${{ matrix.python == '3.13' }}
54
54
steps :
55
55
- uses : actions/checkout@v4
56
56
- name : Setup Python
Original file line number Diff line number Diff line change 3
3
install :
4
4
- path : .
5
5
extra_requirements :
6
- - docs
6
+ - doc
7
7
8
8
# required boilerplate readthedocs/readthedocs.org#10401
9
9
build :
Original file line number Diff line number Diff line change @@ -26,11 +26,10 @@ dependencies = [
26
26
dynamic = [" version" ]
27
27
28
28
[project .urls ]
29
- Homepage = " https://github.com/python/importlib_resources"
30
- Documentation = " https://importlib-resources.readthedocs.io/"
29
+ Source = " https://github.com/python/importlib_resources"
31
30
32
31
[project .optional-dependencies ]
33
- testing = [
32
+ test = [
34
33
# upstream
35
34
" pytest >= 6, != 8.1.*" ,
36
35
" pytest-checkdocs >= 2.4" ,
@@ -43,7 +42,7 @@ testing = [
43
42
" zipp >= 3.17" ,
44
43
" jaraco.test >= 5.4" ,
45
44
]
46
- docs = [
45
+ doc = [
47
46
# upstream
48
47
" sphinx >= 3.5" ,
49
48
" jaraco.packaging >= 9.3" ,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ commands =
7
7
pytest {posargs}
8
8
usedevelop = True
9
9
extras =
10
- testing
10
+ test
11
11
12
12
[testenv:diffcov]
13
13
description = run tests and check that diff from main is covered
@@ -22,8 +22,8 @@ commands =
22
22
[testenv:docs]
23
23
description = build the documentation
24
24
extras =
25
- docs
26
- testing
25
+ doc
26
+ test
27
27
changedir = docs
28
28
commands =
29
29
python -m sphinx -W --keep-going . {toxinidir}/build/html
You can’t perform that action at this time.
0 commit comments