File tree Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 11/_build /doctrees
22/_build /html
3+ /.venv /
4+ /.idea /
35* .pyc
Original file line number Diff line number Diff line change 4343# The size of the persistent disk of the application (in MB).
4444disk : 512
4545
46- # Build time dependencies.
4746dependencies :
4847 python :
4948 virtualenv : 15.1.0
5049
5150# The hooks that will be performed when the package is deployed.
5251hooks :
5352 build : |
54- virtualenv .virtualenv
55- . .virtualenv/bin/activate
56- # Platform.sh currently sets PIP_USER=1.
57- export PIP_USER=
58- pip install pip==9.0.1 wheel==0.29.0
59- pip install -r requirements.txt
60- 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
66cache :
77 directories : [$HOME/.cache/pip]
88
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
1010
11- script : sphinx-build -nW -c _build/ -b html -d _build/doctrees . _build/ html
11+ script : SPHINXOPTS="-nW" make -eC _build html
1212
1313branches :
1414 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