Skip to content

Commit

Permalink
Merge pull request scipy-conference#177 from stefanv/more_robust_comp…
Browse files Browse the repository at this point in the history
…ilation

Improve robustness of compilation
  • Loading branch information
stefanv committed Oct 9, 2015
2 parents 3470a10 + 501f90c commit fabcf46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions publisher/build_paper.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import tempfile
import glob
import shutil
from distutils import dir_util

from writer import writer
from conf import papers_dir, output_dir
Expand All @@ -19,7 +20,8 @@
.. role:: label
.. role:: cite
.. role:: cite(raw)
:format: latex
.. raw:: latex
Expand All @@ -39,9 +41,7 @@

def rst2tex(in_path, out_path):

options.mkdir_p(out_path)
for file in glob.glob(os.path.join(in_path, '*')):
shutil.copy(file, out_path)
dir_util.copy_tree(in_path, out_path)

base_dir = os.path.dirname(__file__)
scipy_status = os.path.join(base_dir, '_static/status.sty')
Expand Down

0 comments on commit fabcf46

Please sign in to comment.