diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5ace4c5..ac0ff69 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -50,7 +50,7 @@ jobs: - python: pypy3.10 platform: ubuntu-latest runs-on: ${{ matrix.platform }} - continue-on-error: ${{ matrix.python == '3.13' || (matrix.python == '3.8' || matrix.python == '3.9') && matrix.platform == 'macos-latest' }} + continue-on-error: ${{ matrix.python == '3.13' }} steps: - uses: actions/checkout@v4 - name: Setup Python diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 85dfea9..dc8516a 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -3,7 +3,7 @@ python: install: - path: . extra_requirements: - - docs + - doc # required boilerplate readthedocs/readthedocs.org#10401 build: diff --git a/pyproject.toml b/pyproject.toml index 1889d2c..9f44d36 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,10 +41,10 @@ dependencies = [ dynamic = ["version"] [project.urls] -Homepage = "https://github.com/jaraco/jaraco.net" +Source = "https://github.com/jaraco/jaraco.net" [project.optional-dependencies] -testing = [ +test = [ # upstream "pytest >= 6, != 8.1.*", "pytest-checkdocs >= 2.4", @@ -63,7 +63,7 @@ testing = [ "requests-mock", "pyparsing", ] -docs = [ +doc = [ # upstream "sphinx >= 3.5", "jaraco.packaging >= 9.3", diff --git a/tox.ini b/tox.ini index a668f5e..ffa2c84 100644 --- a/tox.ini +++ b/tox.ini @@ -9,7 +9,7 @@ commands = pytest {posargs} usedevelop = True extras = - testing + test passenv = GITHUB_ACTIONS @@ -26,8 +26,8 @@ commands = [testenv:docs] description = build the documentation extras = - docs - testing + doc + test changedir = docs commands = python -m sphinx -W --keep-going . {toxinidir}/build/html