Skip to content

Commit 93a53e4

Browse files
committed
# Conflicts: # pyproject.toml
2 parents 2c30c8a + c9729e1 commit 93a53e4

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- python: pypy3.10
5151
platform: ubuntu-latest
5252
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' }}
5454
steps:
5555
- uses: actions/checkout@v4
5656
- name: Setup Python

.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: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,10 @@ dependencies = [
2626
dynamic = ["version"]
2727

2828
[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"
3130

3231
[project.optional-dependencies]
33-
testing = [
32+
test = [
3433
# upstream
3534
"pytest >= 6, != 8.1.*",
3635
"pytest-checkdocs >= 2.4",
@@ -43,7 +42,7 @@ testing = [
4342
"zipp >= 3.17",
4443
"jaraco.test >= 5.4",
4544
]
46-
docs = [
45+
doc = [
4746
# upstream
4847
"sphinx >= 3.5",
4948
"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)