Skip to content

Commit 1f42a71

Browse files
committed
Using python 3.12 for html builds
1 parent ced70d8 commit 1f42a71

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 2.1
44
jobs:
55
build-docs:
66
docker:
7-
- image: cimg/python:3.13
7+
- image: cimg/python:3.12
88
steps:
99
- checkout
1010

@@ -46,7 +46,7 @@ jobs:
4646
command: |
4747
export BASE_URL="/output/job/$CIRCLE_WORKFLOW_JOB_ID/artifacts/0/$DOCS_PATH"
4848
49-
python -m tox -e py313-buildhtml
49+
python -m tox -e py312-buildhtml
5050
5151
- save_cache:
5252
key: pip-cache-{{ checksum "site_requirements.txt" }}

.github/workflows/ci_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
- name: Setup Python
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: '3.11'
27+
python-version: '3.12'
2828

2929
- name: Install dependencies
3030
run: python -m pip install --upgrade tox
3131

3232
- name: Execute notebooks while building HTMLs
33-
run: tox -e py311-buildhtml
33+
run: tox -e py312-buildhtml
3434

3535
- name: Publish
3636
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0

.github/workflows/ci_tests_run_notebooks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ jobs:
6868
- name: Setup Python
6969
uses: actions/setup-python@v5
7070
with:
71-
python-version: '3.11'
71+
python-version: '3.12'
7272

7373
- name: Install dependencies
7474
run: python -m pip install --upgrade tox
7575

7676
- name: Execute notebooks as testing
77-
run: tox -e py311-buildhtml
77+
run: tox -e py312-buildhtml

0 commit comments

Comments
 (0)