Skip to content

Commit 482f45e

Browse files
authored
Merge pull request #36 from andersy005/master
Update Documentation for next release
2 parents 0fe180e + 1a9ed56 commit 482f45e

File tree

3 files changed

+64
-31
lines changed

3 files changed

+64
-31
lines changed

CHANGELOG.rst

+28
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1+
=================
2+
Changelog history
3+
=================
14

5+
6+
Intake-esm v2019.2.28 (2019-02-28)
7+
===================================
8+
9+
10+
Features
11+
---------
12+
13+
- Allow CMIP integration (:pr:`35`) `Anderson Banihirwe`_
14+
15+
Bug Fixes
16+
----------
17+
18+
- Fix bug on build catalog and move `exclude_dirs` to `locations` (:pr:`33`) `Matthew Long`_
19+
20+
21+
Trivial/Internal Changes
22+
------------------------
23+
24+
- Change Logger, update dev-environment dependencies, and formatting fix in input.yml (:pr:`31`) `Matthew Long`_
25+
- Update CircleCI workflow (:pr:`32`) `Anderson Banihirwe`_
26+
- Rename package from `intake-cesm` to `intake-esm` (:pr:`34`) `Anderson Banihirwe`_
27+
28+
.. _`Anderson Banihirwe`: https://github.com/andersy005
29+
.. _`Matthew Long`: https://github.com/matt-long

MANIFEST.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ include LICENSE
44
include README.rst
55
include requirements.txt
66

7+
recursive-include tests
78
recursive-include example_input
89
recursive-include intake_esm *.py
910
recursive-exclude * __pycache__
1011
recursive-exclude * *.py[co]
1112
include versioneer.py
12-
include intake_esm/_version.py
13+
include intake_esm/_version.py

docs/source/conf.py

+34-30
Original file line numberDiff line numberDiff line change
@@ -33,34 +33,38 @@
3333
# Add any Sphinx extension module names here, as strings. They can be extensions
3434
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
3535
extensions = [
36-
"sphinx.ext.autodoc",
37-
"sphinx.ext.viewcode",
38-
"sphinx.ext.autosummary",
39-
"sphinx.ext.doctest",
40-
"sphinx.ext.intersphinx",
41-
"sphinx.ext.extlinks",
42-
"numpydoc",
43-
"IPython.sphinxext.ipython_console_highlighting",
44-
"IPython.sphinxext.ipython_directive",
45-
"nbsphinx",
36+
'sphinx.ext.autodoc',
37+
'sphinx.ext.viewcode',
38+
'sphinx.ext.autosummary',
39+
'sphinx.ext.doctest',
40+
'sphinx.ext.intersphinx',
41+
'sphinx.ext.extlinks',
42+
'numpydoc',
43+
'IPython.sphinxext.ipython_console_highlighting',
44+
'IPython.sphinxext.ipython_directive',
45+
'nbsphinx',
4646
]
4747

48+
extlinks = {
49+
'issue': ('https://github.com/NCAR/intake-esm/issues/%s', 'GH#'),
50+
'pr': ('https://github.com/NCAR/intake-esm/pull/%s', 'GH#'),
51+
}
4852
# Add any paths that contain templates here, relative to this directory.
49-
templates_path = ["_templates"]
53+
templates_path = ['_templates']
5054

5155
# The suffix of source filenames.
52-
source_suffix = ".rst"
56+
source_suffix = '.rst'
5357

5458
# The encoding of source files.
5559
# source_encoding = 'utf-8-sig'
5660

5761
# The master toctree document.
58-
master_doc = "index"
62+
master_doc = 'index'
5963

6064
# General information about the project.
61-
project = u"intake-esm"
62-
copyright = u"2019 onwards, NCAR"
63-
authors = ["Anderson Banihirwe", "Matthew Long"]
65+
project = u'intake-esm'
66+
copyright = u'2019 onwards, NCAR'
67+
author = u'Earth System Informatics Team'
6468

6569
# The version info for the project you're documenting, acts as replacement for
6670
# |version| and |release|, also used in various other places throughout the
@@ -83,7 +87,7 @@
8387

8488
# List of patterns, relative to source directory, that match files and
8589
# directories to ignore when looking for source files.
86-
exclude_patterns = ["_build"]
90+
exclude_patterns = ['_build']
8791

8892
# The reST default role (used for this markup: `text`) to use for all documents.
8993
# default_role = None
@@ -100,7 +104,7 @@
100104
# show_authors = False
101105

102106
# The name of the Pygments (syntax highlighting) style to use.
103-
pygments_style = "sphinx"
107+
pygments_style = 'sphinx'
104108

105109
# A list of ignored prefixes for module index sorting.
106110
# modindex_common_prefix = []
@@ -113,7 +117,7 @@
113117

114118
# The theme to use for HTML and HTML Help pages. See the documentation for
115119
# a list of builtin themes.
116-
html_theme = "sphinx_rtd_theme"
120+
html_theme = 'sphinx_rtd_theme'
117121

118122
# Theme options are theme-specific and customize the look and feel of a theme
119123
# further. For a list of options available for each theme, see the
@@ -142,7 +146,7 @@
142146
# Add any paths that contain custom static files (such as style sheets) here,
143147
# relative to this directory. They are copied after the builtin static files,
144148
# so a file named "default.css" will overwrite the builtin "default.css".
145-
html_static_path = ["_static"]
149+
html_static_path = ['_static']
146150

147151
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
148152
# using the given strftime format.
@@ -186,7 +190,7 @@
186190
# html_file_suffix = None
187191

188192
# Output file base name for HTML help builder.
189-
htmlhelp_basename = "intake_esmdoc"
193+
htmlhelp_basename = 'intake_esmdoc'
190194

191195

192196
# -- Options for LaTeX output --------------------------------------------------
@@ -202,7 +206,7 @@
202206

203207
# Grouping the document tree into LaTeX files. List of tuples
204208
# (source start file, target name, title, author, documentclass [howto/manual]).
205-
latex_documents = [("index", "intake-esm.tex", u"intake-esm Documentation", authors, "manual")]
209+
latex_documents = [('index', 'intake-esm.tex', u'intake-esm Documentation', author, 'manual')]
206210

207211
# The name of an image file (relative to this directory) to place at the top of
208212
# the title page.
@@ -229,7 +233,7 @@
229233

230234
# One entry per manual page. List of tuples
231235
# (source start file, name, description, authors, manual section).
232-
man_pages = [("index", "intake-esm", u"intake-esm Documentation", authors, 1)]
236+
man_pages = [('index', 'intake-esm', u'intake-esm Documentation', [author], 1)]
233237

234238
# If true, show URL addresses after external links.
235239
# man_show_urls = False
@@ -242,13 +246,13 @@
242246
# dir menu entry, description, category)
243247
texinfo_documents = [
244248
(
245-
"index",
246-
"intake-esm",
247-
u"intake-esm Documentation",
248-
authors,
249-
"intake-esm",
250-
"One line description of project.",
251-
"Miscellaneous",
249+
'index',
250+
'intake-esm',
251+
u'intake-esm Documentation',
252+
author,
253+
'intake-esm',
254+
'One line description of project.',
255+
'Miscellaneous',
252256
)
253257
]
254258

0 commit comments

Comments
 (0)