Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jun 9, 2024
2 parents eb296d3 + a595a0f commit b27acd1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ python:
install:
- path: .
extra_requirements:
- docs
- doc

# required boilerplate readthedocs/readthedocs.org#10401
build:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dynamic = ["version"]
Homepage = "https://github.com/jaraco/irc"

[project.optional-dependencies]
testing = [
test = [
# upstream
"pytest >= 6, != 8.1.*",
"pytest-checkdocs >= 2.4",
Expand All @@ -46,7 +46,7 @@ testing = [
# local
"pygments",
]
docs = [
doc = [
# upstream
"sphinx >= 3.5",
"jaraco.packaging >= 9.3",
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ commands =
pytest {posargs}
usedevelop = True
extras =
testing
test

[testenv:diffcov]
description = run tests and check that diff from main is covered
Expand All @@ -22,8 +22,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
Expand Down

0 comments on commit b27acd1

Please sign in to comment.