File tree 4 files changed +12
-6
lines changed
4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
/_build /doctrees
2
2
/_build /html
3
+ /.venv /
4
+ /.idea /
3
5
* .pyc
Original file line number Diff line number Diff line change 43
43
# The size of the persistent disk of the application (in MB).
44
44
disk : 512
45
45
46
- # Build time dependencies.
47
46
dependencies :
48
47
python :
49
- sphinx : " 1.3.6 "
48
+ virtualenv : " 15.1 "
50
49
51
50
# The hooks that will be performed when the package is deployed.
52
51
hooks :
53
52
build : |
54
- pip install git+https://github.com/fabpot/sphinx-php.git
55
- make -C _build html
53
+ virtualenv .venv
54
+ . .venv/bin/activate
55
+ export PIP_USER=
56
+ pip install pip==9.0.1 wheel==0.29.0
57
+ pip install -r _build/.requirements.txt
58
+ make -C _build html
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ sudo: false
6
6
cache :
7
7
directories : [$HOME/.cache/pip]
8
8
9
- install : pip install sphinx~= 1.3.0 git+https://github.com/fabpot/sphinx-php.git
9
+ install : pip install -r _build/.requirements.txt sphinx== 1.3.0
10
10
11
- script : sphinx-build -nW -c _build/ -b html -d _build/doctrees . _build/ html
11
+ script : SPHINXOPTS="-nW" make -eC _build html
12
12
13
13
branches :
14
14
except :
Original file line number Diff line number Diff line change
1
+ git+https://github.com/fabpot/sphinx-php.git@master#egg_name=sphinx-php
You can’t perform that action at this time.
0 commit comments