Skip to content

Commit a7b12a5

Browse files
authored
Merge pull request #147 from QInfer/cgranade/fix-rtd-1
Move ReadTheDocs configuration to use YAML config
2 parents 2ba9a7a + 35af41e commit a7b12a5

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

doc/environment.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: qinfer
2+
dependencies:
3+
- cython
4+
- numpy
5+
- scipy
6+
- scikit-learn
7+
- ipython
8+
- future>=0.15
9+
- matplotlib
10+
- pytest
11+
- pytest-cov
12+
- pytest-xdist
13+
- coveralls
14+
- pylint
15+
- pip:
16+
# We also add additional tools for plotting.
17+
- mpltools
18+
# We use the PyPI version of QuTiP here since the conda version
19+
# is on the wrong channel for use with RTD.
20+
- qutip

readthedocs.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
build:
2+
image: latest
3+
4+
python:
5+
version: 3.5
6+
setup_py_install: true
7+
8+
formats:
9+
- epub
10+
- pdf
11+
12+
conda:
13+
file: ./doc/environment.yml

0 commit comments

Comments
 (0)