Skip to content

Commit 0c34d9b

Browse files
committed
CI: circleci config cleanup
1 parent c1667af commit 0c34d9b

1 file changed

Lines changed: 5 additions & 16 deletions

File tree

.circleci/config.yml

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,29 @@
11
version: 2.1
22

3-
43
jobs:
4+
55
build-docs:
66
docker:
7-
- image: cimg/python:3.12
7+
- image: cimg/python:3.13-node
8+
89
steps:
910
- checkout
1011

11-
- run:
12-
name: Install Node.js
13-
command: |
14-
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
15-
sudo apt-get install -y nodejs
16-
17-
- run:
18-
name: Install mystmd
19-
command: |
20-
npm install mystmd
21-
2212
- run:
2313
name: Install Python dependencies
2414
command: |
2515
python -m pip install --upgrade pip tox
2616
2717
- run:
28-
name: Build documentation
18+
name: Build HTML rendering of notebooks
2919
no_output_timeout: 60m
3020
environment:
3121
# Ensure this is same as store_artifacts path below
3222
DOCS_PATH: _build/html
3323
command: |
3424
export BASE_URL="/output/job/$CIRCLE_WORKFLOW_JOB_ID/artifacts/0/$DOCS_PATH"
3525
export OMP_NUM_THREADS=1
36-
python -m tox -e py312-buildhtml
37-
26+
python -m tox -e py313-buildhtml
3827
3928
- store_artifacts:
4029
path: _build/html

0 commit comments

Comments
 (0)