Skip to content

Commit

Permalink
Merge branch 'master' into cleanenv-py311
Browse files Browse the repository at this point in the history
  • Loading branch information
aulemahal authored Jun 8, 2023
2 parents 8407661 + 7e6e10c commit 327e3f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ General notes for implementing new bias-adjustment methods:
* If the algorithm gets complicated and would generate many dask tasks, it should be implemented as functions wrapped
by :py:func:`~xclim.sdba.map_blocks` or :py:func:`~xclim.sdba.map_groups` in ``xclim/sdba/_adjustment.py``.
* xclim doesn't implement monolithic multi-parameter methods, but rather smaller modular functions to construct post-processing workflows.
* If you are working on numba-accelerated function that use ``@guvectorize``, consider disabling caching during the development phase and reactivating it once all changes are ready for review. This is done by commenting ``cache=True`` in the decorator.

Report Bugs
~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.43.6-beta
current_version = 0.43.7-beta
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)(\-(?P<release>[a-z]+))?
Expand Down
2 changes: 1 addition & 1 deletion xclim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

__author__ = """Travis Logan"""
__email__ = "logan.travis@ouranos.ca"
__version__ = "0.43.6-beta"
__version__ = "0.43.7-beta"


# Load official locales
Expand Down

0 comments on commit 327e3f3

Please sign in to comment.