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 091def4 commit 0e32720Copy full SHA for 0e32720
.circleci/config.yml
@@ -1,27 +1,26 @@
1
+---
2
version: 2.1
3
4
orbs:
- python: circleci/python@0.2.1
5
+ python: circleci/python@1.2.1
6
7
jobs:
8
build_docs:
9
executor: python/default
10
steps:
11
- checkout
- - python/install-deps
12
- - run:
13
- name: install theme
14
- command: python -m pip install --user -ve .
+ - python/install-packages:
+ pkg-manager: pip-dist
+ pip-dependency-file: docs/requirements.txt
15
- run:
16
name: Build docs
17
- command: cd docs/ && make html
+ command: make -C docs html
18
- persist_to_workspace:
19
root: docs/_build/html
20
paths: .
21
- store_artifacts:
22
path: docs/_build/html/
23
24
-
25
workflows:
26
main:
27
0 commit comments