Skip to content

Commit 455efff

Browse files
authored
Merge pull request #950 from paulromano/release-0.10
Final updates for next release
2 parents 9374695 + 59b15fe commit 455efff

24 files changed

Lines changed: 669 additions & 336 deletions

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2011-2017 Massachusetts Institute of Technology
1+
Copyright (c) 2011-2018 Massachusetts Institute of Technology
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of
44
this software and associated documentation files (the "Software"), to deal in

docs/Makefile

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ PAPEROPT_a4 = -D latex_paper_size=a4
1313
PAPEROPT_letter = -D latex_paper_size=letter
1414
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
1515

16-
# SVG to PDF conversion
17-
SVG2PDF = inkscape
18-
PDFS = $(patsubst %.svg,%.pdf,$(wildcard $(IMAGEDIR)/*.svg))
19-
2016
# Tikz to PNG conversion
2117
PNGS = $(patsubst %.tex,%.png,$(wildcard $(IMAGEDIR)/*.tex))
2218

@@ -41,21 +37,13 @@ help:
4137
@echo " linkcheck to check all external links for integrity"
4238
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
4339

44-
# Pattern rule for converting SVG to PDF
45-
%.pdf: %.svg
46-
$(SVG2PDF) -f $< -A $@
47-
4840
%.png: %.tex
4941
pdflatex --interaction=nonstopmode --output-directory=$(IMAGEDIR) $<
5042
pdftoppm -r 120 -singlefile $(patsubst %.tex,%.pdf, $<) $(basename $<)
5143
convert -trim -fuzz 2% -transparent white $(patsubst %.tex,%.ppm,$<) $@
5244

53-
# Rule to build PDFs
54-
images: $(PDFS) $(PNGS)
55-
5645
clean:
5746
-rm -rf $(BUILDDIR)/*
58-
-rm -rf $(PDFS)
5947
-rm -rf source/pythonapi/generated/
6048

6149
html:

0 commit comments

Comments
 (0)