We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27711d4 commit e92c528Copy full SHA for e92c528
.circleci/config.yml
@@ -3,7 +3,7 @@ version: 2.1
3
jobs:
4
build:
5
docker:
6
- - image: cimg/python:3.12
+ - image: cimg/python:3.13
7
8
steps:
9
- checkout
@@ -16,7 +16,7 @@ jobs:
16
name: Install Python dependencies
17
command: |
18
pip install --upgrade --user pip
19
- pip install --user -r requirements.txt
+ pip install --user -r build_requirements.txt
20
pip list
21
22
- save_cache:
@@ -29,8 +29,7 @@ jobs:
29
30
# NOTE: bad interaction w/ blas multithreading on circleci
31
export OMP_NUM_THREADS=1
32
- make html # FIX: check that failing examples produce failure
33
- cp build/html/_downloads/
+ make web # FIX: check that failing examples produce failure
34
35
- store_artifacts:
36
- path: build/html
+ path: _build/html
0 commit comments