Skip to content

Commit 60a75e1

Browse files
committed
# Conflicts: # pyproject.toml # tox.ini
2 parents 40ec079 + c9729e1 commit 60a75e1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/main.yml

+1-1
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

+1-1
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ file = "README.md"
3333
content-type = "text/markdown"
3434

3535
[project.urls]
36-
Homepage = "https://github.com/jaraco/calendra"
36+
Source = "https://github.com/jaraco/calendra"
3737

3838
[project.optional-dependencies]
39-
testing = [
39+
test = [
4040
# upstream
4141
"pytest >= 6, != 8.1.*",
4242
"pytest-checkdocs >= 2.4",
@@ -53,7 +53,7 @@ testing = [
5353
"jaraco.test >= 3.2.0",
5454
"freezegun",
5555
]
56-
docs = [
56+
doc = [
5757
# upstream
5858
"sphinx >= 3.5",
5959
"jaraco.packaging >= 9.3",

tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ commands =
1111
pytest {posargs}
1212
usedevelop = True
1313
extras =
14-
testing
14+
test
1515
astronomy
1616

1717
[testenv:diffcov]
@@ -27,8 +27,8 @@ commands =
2727
[testenv:docs]
2828
description = build the documentation
2929
extras =
30-
docs
31-
testing
30+
doc
31+
test
3232
changedir = docs
3333
commands =
3434
python -m sphinx -W --keep-going . {toxinidir}/build/html

0 commit comments

Comments
 (0)