Skip to content

Commit b7e9f1d

Browse files
committed
Merge branch 'feature/rtd-compatibility' into develop
2 parents ddba0dc + c3eb4b0 commit b7e9f1d

File tree

4 files changed

+36
-8
lines changed

4 files changed

+36
-8
lines changed

docs/conf.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696

9797
# The theme to use for HTML and HTML Help pages. See the documentation for
9898
# a list of builtin themes.
99-
html_theme = 'kr'
99+
#html_theme = 'kr'
100100

101101
# Theme options are theme-specific and customize the look and feel of a theme
102102
# further. For a list of options available for each theme, see the
@@ -175,11 +175,6 @@
175175
# Output file base name for HTML help builder.
176176
htmlhelp_basename = 'mfrdoc'
177177

178-
latex_documents = [
179-
('documentation', False),
180-
]
181-
182-
183178
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
184179

185180
# On RTD we can't import sphinx_rtd_theme, but it will be applied by

environment.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: py35
2+
dependencies:
3+
- pip=8.1.1=py35_0
4+
- python=3.5.1=0
5+
- setuptools=20.3=py35_0
6+
- wheel=0.29.0=py35_0
7+
- pip:
8+
- aiohttp==0.18.4
9+
- chardet==2.3.0
10+
- furl==0.4.2
11+
- humanfriendly==2.1
12+
- invoke==0.11.1
13+
- mako==1.0.1
14+
- raven==5.27.0
15+
- stevedore==1.2.0
16+
- tornado==4.3
17+
- git+https://github.com/CenterForOpenScience/waterbutler.git@0.19.0#egg=waterbutler
18+
- agent==0.1.2
19+
- Pygments==2.0.2
20+
- pydocx==0.7.0
21+
- Pillow==2.8.2
22+
- nbconvert==4.2.0
23+
- nbformat==4.1.0
24+
- traitlets==4.2.2
25+
- jsonschema==2.4.0
26+
- jinja2==2.7.3
27+
- mistune==0.7
28+
- docutils==0.12
29+
- git+https://github.com/icereval/xlrd.git
30+
- markdown==2.6.2
31+
- certifi==2015.4.28

mfr/core/exceptions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def __init__(self, *args, code: int=400, handler_type: str='', **kwargs):
192192

193193

194194
class MakeRendererError(UnsupportedExtensionError):
195-
"""The MFR related errors raised from a :def:`mfr.core.utils.make_renderer` should inherit from
195+
"""The MFR related errors raised from a ``mfr.core.utils.make_renderer`` should inherit from
196196
MakeRendererError
197197
"""
198198

@@ -202,7 +202,7 @@ def __init__(self, *args, **kwargs):
202202

203203

204204
class MakeExporterError(UnsupportedExtensionError):
205-
"""The MFR related errors raised from a :def:`mfr.core.utils.make_exporter` should inherit from
205+
"""The MFR related errors raised from ``mfr.core.utils.make_exporter`` should inherit from
206206
MakeExporterError
207207
"""
208208

readthedocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
conda:
2+
file: environment.yml

0 commit comments

Comments
 (0)