Skip to content
This repository was archived by the owner on Dec 8, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,6 @@ ENV/

# Rope project settings
.ropeproject

# Pycharm
.idea/
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ before_install:
install:
- sudo apt-get install -qq gcc gfortran libblas-dev liblapack-dev
- sudo apt-get install -qq gcc-4.8 gfortran-4.8
- sudo apt install pandoc
- |
if [ ${TRAVIS_PYTHON_VERSION:0:1} = 3 ]; then
sudo apt-get install python3-numpy
Expand All @@ -38,6 +39,7 @@ install:
python3 setup.py build
python3 setup.py install
pip3 install sphinx
pip3 install nbsphinx
pip3 install sphinx-rtd-theme
cd ${TRAVIS_BUILD_DIR}/docs
make html
Expand All @@ -50,6 +52,7 @@ install:
python2 setup.py build
python2 setup.py install
pip2 install sphinx
pip2 install nbsphinx
pip2 install sphinx-rtd-theme
cd ${TRAVIS_BUILD_DIR}/docs
make html
Expand Down
8 changes: 6 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ['sphinx.ext.autodoc','sphinx.ext.mathjax']
extensions = ['sphinx.ext.autodoc','sphinx.ext.mathjax', 'nbsphinx']

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand Down Expand Up @@ -70,7 +70,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = []
exclude_patterns = ['**.ipynb_checkpoints']

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
Expand Down Expand Up @@ -158,3 +158,7 @@


html_sidebars = { '**': ['globaltoc.html', 'relations.html', 'sourcelink.html', 'searchbox.html'], }

# -- Options for nbsphinx --------------------------------------------------

nbsphinx_execute = 'never'
316 changes: 0 additions & 316 deletions docs/source/examples.rst

This file was deleted.

2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ For citation of the individual procedures of QML, please see the "Citing use of
installation
citation
tutorial
examples
qml_examples/examples


.. toctree::
Expand Down
4 changes: 4 additions & 0 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ Installing prerequisite modules (for most Linux systems):
These should already be installed on most systems. The Intel compilers
and MKL math-libraries are supported as well (see section 1.3).

**Additional note:**
For running neural networks, TensorFlow 1.8 is required. Pip does not automatically instal TF, so one should follow
`these <https://www.tensorflow.org/versions/r1.8/install/>` instructions.

Installing via ``pip``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
Loading