Skip to content

Commit

Permalink
Merge 4ef5309 into 3bb308a
Browse files Browse the repository at this point in the history
  • Loading branch information
TagnumElite committed Oct 6, 2019
2 parents 3bb308a + 4ef5309 commit eff5474
Show file tree
Hide file tree
Showing 8 changed files with 106 additions and 284 deletions.
6 changes: 0 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ dist: xenial
matrix:
fast_finish: true
include:
- os: linux
python: 3.4
- os: linux
python: 3.5
- os: linux
Expand All @@ -14,10 +12,6 @@ matrix:
python: 3.7
- os: linux
python: nightly
- os: osx
osx_image: xcode10.1
language: generic
env: PYTHON=3.4.9
- os: osx
osx_image: xcode10.1
language: generic
Expand Down
12 changes: 0 additions & 12 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
environment:
matrix:
- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4"
RUN: "%PYTHON%\\python"
PIP: "%PYTHON%\\Scripts\\pip"
PYTEST: "%PYTHON%\\Scripts\\py.test"

- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5"
RUN: "%PYTHON%\\python"
Expand All @@ -18,12 +12,6 @@ environment:
PIP: "%PYTHON%\\Scripts\\pip"
PYTEST: "%PYTHON%\\Scripts\\py.test"

- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4"
RUN: "%PYTHON%\\python"
PIP: "%PYTHON%\\Scripts\\pip"
PYTEST: "%PYTHON%\\Scripts\\py.test"

- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5"
RUN: "%PYTHON%\\python"
Expand Down
78 changes: 14 additions & 64 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -1,70 +1,20 @@
# Makefile for Sphinx documentation
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
PAPER =

# Internal variables.
PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d _build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .

.PHONY: help clean html web pickle htmlhelp latex changes linkcheck
# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
SOURCEDIR = .
BUILDDIR = _build

# Put it first so that "make" without argument is like "make help".
help:
@echo "Please use \`make <target>' where <target> is one of"
@echo " html to make standalone HTML files"
@echo " pickle to make pickle files (usable by e.g. sphinx-web)"
@echo " htmlhelp to make HTML files and a HTML help project"
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
@echo " changes to make an overview over all changed/added/deprecated items"
@echo " linkcheck to check all external links for integrity"

clean:
-rm -rf _build/*

html:
mkdir -p _build/html _build/doctrees
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) _build/html
@echo
@echo "Build finished. The HTML pages are in _build/html."

pickle:
mkdir -p _build/pickle _build/doctrees
$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) _build/pickle
@echo
@echo "Build finished; now you can process the pickle files or run"
@echo " sphinx-web _build/pickle"
@echo "to start the sphinx-web server."

web: pickle

htmlhelp:
mkdir -p _build/htmlhelp _build/doctrees
$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) _build/htmlhelp
@echo
@echo "Build finished; now you can run HTML Help Workshop with the" \
".hhp project file in _build/htmlhelp."

latex:
mkdir -p _build/latex _build/doctrees
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) _build/latex
@echo
@echo "Build finished; the LaTeX files are in _build/latex."
@echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
"run these through (pdf)latex."
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

changes:
mkdir -p _build/changes _build/doctrees
$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) _build/changes
@echo
@echo "The overview file is in _build/changes."
.PHONY: help Makefile

linkcheck:
mkdir -p _build/linkcheck _build/doctrees
$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) _build/linkcheck
@echo
@echo "Link check complete; look for any errors in the above output " \
"or in _build/linkcheck/output.txt."
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

0 comments on commit eff5474

Please sign in to comment.