Skip to content

Commit 53bc169

Browse files
author
PaulWestenthanner
committed
Deprecate Python 3.9, add Python 3.13
1 parent 86d4ce0 commit 53bc169

File tree

5 files changed

+115
-132
lines changed

5 files changed

+115
-132
lines changed

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
python -m pip install --upgrade pip wheel
1515
python -m pip install poetry
1616
poetry install
17-
- name: Build Docs
18-
uses: ammaraskar/sphinx-action@master
19-
with:
20-
docs-folder: "docs/"
17+
- name: Directly build docs
18+
run: |
19+
pip install -r docs/requirements.txt
20+
sphinx-build -D todo_include_todos=0 docs ./docs/build/html/
2121
- name: Deploy Docs
2222
uses: peaceiris/actions-gh-pages@v3
2323
with:

.github/workflows/test-docs-build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
- uses: actions/setup-python@v2
1414
with:
1515
python-version: ${{ matrix.python-version }}
16-
- uses: ammaraskar/sphinx-action@master
17-
with:
18-
docs-folder: "docs/"
16+
- name: directly build sphinx (plugin only supports python 3.8)
17+
run: |
18+
pip install -r docs/requirements.txt
19+
sphinx-build -D todo_include_todos=0 docs ./docs/build/html/

.github/workflows/test-suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ['3.9', '3.10', '3.11', '3.12']
18+
python-version: ['3.10', '3.11', '3.12', '3.13']
1919

2020
steps:
2121
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)