File tree 4 files changed +4
-7
lines changed
4 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 20
20
- setup : |
21
21
sudo systemctl start docker
22
22
cd vdirsyncer
23
- make -e install-dev -e install-docs
23
+ make -e install-dev
24
24
- test : |
25
25
cd vdirsyncer
26
26
# Non-system python is used for packages:
Original file line number Diff line number Diff line change @@ -40,9 +40,6 @@ ci-test-storage:
40
40
done
41
41
bash $(CODECOV_PATH ) -c
42
42
43
- install-docs :
44
- pip install -Ur docs-requirements.txt
45
-
46
43
release-deb :
47
44
sh scripts/release-deb.sh debian jessie
48
45
sh scripts/release-deb.sh debian stretch
@@ -53,8 +50,7 @@ release-deb:
53
50
install-dev :
54
51
pip install -U pip setuptools wheel
55
52
pip install -e .
56
- pip install -Ur test-requirements.txt
57
- pip install pre-commit
53
+ pip install -Ur test-requirements.txt -r docs-requirements.txt pre-commit
58
54
set -xe && if [ " $( REQUIREMENTS) " = " minimal" ]; then \
59
55
pip install -U --force-reinstall $$(python setup.py --quiet minimal_requirements ) ; \
60
56
fi
Original file line number Diff line number Diff line change
1
+ # This file is used by readthedocs.org
1
2
sphinx != 1.4.7
2
3
sphinx_rtd_theme
3
4
setuptools_scm
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ take care of the HTML docs' formatting.
76
76
You can find a list of dependencies in ``docs-requirements.txt ``. Again, you
77
77
can install those using pip with::
78
78
79
- make install- docs
79
+ pip install -r docs-requirements.txt
80
80
81
81
Then change into the ``docs/ `` directory and build whatever format you want
82
82
using the ``Makefile `` in there (run ``make `` for the formats you can build).
You can’t perform that action at this time.
0 commit comments