Skip to content

Commit

Permalink
Fixed CWD call in calc_ind. Moved to version 4.2.19
Browse files Browse the repository at this point in the history
  • Loading branch information
pagecp committed Aug 9, 2021
1 parent 8bb8ac1 commit b6c0684
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion icclim/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from . import calc_ind, calc_indice, calc_percentiles, icclim_exceptions, maps, set_globattr, set_longname_units, set_longname_units_custom_indices, time_subset
from icclim.icclim import indice as indice

__version__ = "4.2.18" # print(icclim.__version__)
__version__ = "4.2.19" # print(icclim.__version__)
2 changes: 1 addition & 1 deletion icclim/calc_ind.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def zzz(indice_name, **kwargs):
res = calc_indice.CDD_calculation(**kwargs)

elif indice_name == 'CWD':
res =CWD_calculation(**kwargs)
res = calc_indice.CWD_calculation(**kwargs)


elif indice_name == 'SD':
Expand Down
2 changes: 1 addition & 1 deletion icclim/icclim_doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
# built documents.
#
# The short X.Y version.
version = '4.2.18'
version = '4.2.19'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion icclim/icclim_doc/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ To get the version of installed library, do the following:
.. code-block:: sh
>>> icclim.__version__
4.2.18
4.2.19
.. note:: ICCLIM was not tested on Windows platform...

0 comments on commit b6c0684

Please sign in to comment.