Skip to content

Commit

Permalink
Remove duplicate entries from v2.1.0 changelog (#824)
Browse files Browse the repository at this point in the history
* Remove duplicate changelog entries
* Update intersphinx urls
  • Loading branch information
bouweandela authored and valeriupredoi committed Oct 12, 2020
1 parent 444d775 commit 588f5a3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
---
exclude: |
(?x)
^doc/conf.py|
^esmvalcore/cmor/tables/|
^esmvalcore/preprocessor/ne_masks/
repos:
Expand Down
3 changes: 0 additions & 3 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ This release includes
Bug fixes
~~~~~~~~~

- Fix diagnostic filter (`#713 <https://github.com/ESMValGroup/ESMValCore/pull/713>`__) `Javier Vegas-Regidor <https://github.com/jvegasbsc>`__
- Set unit=1 if anomalies are standardized (`#727 <https://github.com/ESMValGroup/ESMValCore/pull/727>`__) `bascrezee <https://github.com/bascrezee>`__
- Fix crash for FGOALS-g2 variables without longitude coordinate (`#729 <https://github.com/ESMValGroup/ESMValCore/pull/729>`__) `Bouwe Andela <https://github.com/bouweandela>`__
- Improve variable alias management (`#595 <https://github.com/ESMValGroup/ESMValCore/pull/595>`__) `Javier Vegas-Regidor <https://github.com/jvegasbsc>`__
Expand All @@ -30,8 +29,6 @@ Documentation
Improvements
~~~~~~~~~~~~

- Pin Yamale to v2 (`#718 <https://github.com/ESMValGroup/ESMValCore/pull/718>`__) `Bouwe Andela <https://github.com/bouweandela>`__
- Expanded cmor public API (`#714 <https://github.com/ESMValGroup/ESMValCore/pull/714>`__) `Manuel Schlund <https://github.com/schlunma>`__
- Reduce size of docker image (`#723 <https://github.com/ESMValGroup/ESMValCore/pull/723>`__) `Javier Vegas-Regidor <https://github.com/jvegasbsc>`__
- Add 'test' extra to installation, used by docker development tag (`#733 <https://github.com/ESMValGroup/ESMValCore/pull/733>`__) `Bouwe Andela <https://github.com/bouweandela>`__
- Correct dockerhub link (`#736 <https://github.com/ESMValGroup/ESMValCore/pull/736>`__) `Bouwe Andela <https://github.com/bouweandela>`__
Expand Down
19 changes: 10 additions & 9 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import sys
import os
from pathlib import Path
import sys
from datetime import datetime
from pathlib import Path

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand Down Expand Up @@ -414,19 +414,20 @@

# Configuration for intersphinx
intersphinx_mapping = {
'python': ('https://docs.python.org/3/', None),
'esmvalcore':
(f'https://docs.esmvaltool.org/projects/esmvalcore/en/{rtd_version}/',
None),
'esmvaltool': (f'https://docs.esmvaltool.org/en/{rtd_version}/', None),
'iris': ('https://scitools.org.uk/iris/docs/latest/', None),
'numpy': ('https://docs.scipy.org/doc/numpy/', None),
'matplotlib': ('https://matplotlib.org/', None),
'numpy': ('https://numpy.org/doc/stable/', None),
'python': ('https://docs.python.org/3/', None),
'scipy': ('https://docs.scipy.org/doc/scipy/reference/', None),
'esmvaltool':
('https://docs.esmvaltool.org/en/%s/' % rtd_version, None),
'esmvalcore':
('https://docs.esmvaltool.org/projects/ESMValCore/en/%s/' %
rtd_version, None),
}

# -- Custom Document processing ----------------------------------------------

sys.path.append(os.path.dirname(__file__))
from gensidebar import generate_sidebar

generate_sidebar(globals(), "esmvalcore")

0 comments on commit 588f5a3

Please sign in to comment.