File tree 2 files changed +44
-0
lines changed
2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ jobs :
3
+ build_docs :
4
+ docker :
5
+ - image : circleci/python:3.7-stretch
6
+ steps :
7
+ - checkout
8
+ - run :
9
+ name : Set BASH_ENV
10
+ command : |
11
+ echo "set -e" >> $BASH_ENV;
12
+ echo "export PATH=~/.local/bin:$PATH" >> $BASH_ENV;
13
+ - restore_cache :
14
+ keys :
15
+ - pip-cache
16
+ - run :
17
+ name : Get dependencies and install
18
+ command : |
19
+ pip install --user -q --upgrade pip setuptools
20
+ pip install --user -q --upgrade numpy matplotlib sphinx
21
+ pip install --user -e .
22
+ git submodule init
23
+ git submodule update
24
+ - save_cache :
25
+ key : pip-cache
26
+ paths :
27
+ - ~/.cache/pip
28
+ - run :
29
+ name : make html
30
+ command : |
31
+ cd doc
32
+ make html
33
+ - store_artifacts :
34
+ path : doc/_build/html/
35
+ destination : html
36
+
37
+ workflows :
38
+ version : 2
39
+
40
+ default :
41
+ jobs :
42
+ - build_docs
Original file line number Diff line number Diff line change 6
6
* .egg-info
7
7
* .swp
8
8
* .swo
9
+ .pytest_cache
10
+ doc /_build
9
11
build
10
12
dist
11
13
doc /_build
You can’t perform that action at this time.
0 commit comments