Skip to content

Commit 74e0ca6

Browse files
committed
Add sphinx commands to generate pdfs and travis deps
1 parent aef628d commit 74e0ca6

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

‎.travis.yml‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ python:
33
- "3.6"
44
install:
55
- pip install -r requirements.txt
6+
- sudo apt-get install -y texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra
67
script:
78
- python deploy_gh_pages.py

‎deploy_gh_pages.py‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,11 @@ def build_and_copy(branch, folder_name, versions_available, validate_links=False
4646
call("make html")
4747
if validate_links:
4848
call("make linkcheck")
49+
call("make latexpdf")
4950
tmp_dir = tempfile.mkdtemp()
5051

5152
copytree("_build/html/", tmp_dir)
53+
copytree("_build/latex/conan.pdf", tmp_dir)
5254
shutil.rmtree("_build")
5355

5456
# Go to deploy branch, copy new files and commit

0 commit comments

Comments
 (0)