Skip to content

Commit e92c528

Browse files
committed
Try further fixes to circle-ci
1 parent 27711d4 commit e92c528

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.circleci/config.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
jobs:
44
build:
55
docker:
6-
- image: cimg/python:3.12
6+
- image: cimg/python:3.13
77

88
steps:
99
- checkout
@@ -16,7 +16,7 @@ jobs:
1616
name: Install Python dependencies
1717
command: |
1818
pip install --upgrade --user pip
19-
pip install --user -r requirements.txt
19+
pip install --user -r build_requirements.txt
2020
pip list
2121
2222
- save_cache:
@@ -29,8 +29,7 @@ jobs:
2929
command: |
3030
# NOTE: bad interaction w/ blas multithreading on circleci
3131
export OMP_NUM_THREADS=1
32-
make html # FIX: check that failing examples produce failure
33-
cp build/html/_downloads/
32+
make web # FIX: check that failing examples produce failure
3433
3534
- store_artifacts:
36-
path: build/html
35+
path: _build/html

0 commit comments

Comments
 (0)