Skip to content

Commit

Permalink
Merge branch 'main' into clean-units
Browse files Browse the repository at this point in the history
  • Loading branch information
aulemahal authored Jan 21, 2025
2 parents 14b70dc + f4f234c commit 191f0c9
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 9 deletions.
52 changes: 50 additions & 2 deletions .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,62 @@
"title": "xsdba",
"creators": [
{
"name": "Smith, Trevor James",
"name": "Bourgault, Pascal",
"affiliation": "Ouranos, Montréal, Québec, Canada",
"orcid": "0000-0001-5393-8359"
"orcid": "0000-0003-1192-0403"
},
{
"name": "Dupuis, Éric",
"affiliation": "Ouranos, Montréal, Québec, Canada",
"orcid": "0000-0001-7976-4596"
},
{
"name": "Smith, Trevor James",
"affiliation": "Ouranos, Montréal, Québec, Canada",
"orcid": "0000-0001-5393-8359"
},
{
"name": "Lavoie, Juliette",
"affiliation": "Ouranos, Montréal, Québec, Canada",
"orcid": "0000-0002-4708-5182"
},
{
"name": "Lamarche, Adrien",
"orcid": "0009-0002-9078-8358"
},
{
"name": "Gammon, Sarah",
"affiliation": "Ouranos, Montréal, Québec, Canada",
"orcid": "0009-0007-6082-9063"
},
{
"name": "Huard, David",
"affiliation": "Ouranos, Montréal, Québec, Canada",
"orcid": "0000-0003-0311-5498"
},
{
"name": "Beaupré Laperrière, Alexis",
"affiliation": "Ouranos, Montréal, Québec, Canada"
},
{
"name": "Aoun, Abel",
"affiliation": "Centre européen de recherche et de formation avancée en calcul scientifique (CERFACS), Toulouse, France",
"orcid": "0000-0003-2289-2890"
},
{
"name": "Braun, Marco",
"affiliation": "Ouranos Consortium, Montréal, Québec, Canada",
"orcid": "0000-0001-5061-3217"
},
{
"name": "Rondeau-Genesse, Gabriel",
"affiliation": "Ouranos, Montréal, Québec, Canada",
"orcid": "0000-0003-3389-9406"
},
{
"name": "Roy, Philippe",
"affiliation": "Institut de recherche d'Hydro-Québec (IREQ), Varennes, Québec, Canada",
"orcid": "0000-0003-1239-7589"
}
],
"keywords": [
Expand Down
17 changes: 14 additions & 3 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,18 @@ Co-Developers
* Pascal Bourgault <[email protected]> `@aulemahal <https://github.com/aulemahal>`_
* Trevor James Smith <[email protected]> `@Zeitsperre <https://github.com/Zeitsperre>`_

Contributors
------------
Contributors [*]_
-----------------

None yet. Why not be the first?
* Juliette Lavoie <[email protected]> `@juliettelavoie <https://github.com/juliettelavoie>`_
* Adrien Lamarche `@LamAdr <https://github.com/LamAdr>`_
* Sarah Gammon `@SarahG-579462 <https://github.com/SarahG-579462>`_
* David Huard <[email protected]> `@huard <https://github.com/huard>`_
* Alexis Beaupré-Laperrière `@Beauprel <https://github.com/Beauprel>`_
* Abel Aoun <[email protected]> `@bzah <https://github.com/bzah>`_
* Marco Braun <[email protected]> `@vindelico <https://github.com/vindelico>`_
* Gabriel Rondeau-Genesse <[email protected]> `@RondeauG <https://github.com/RondeauG>`_
* Sascha Hofmann <[email protected]> `@saschahofmann <https://github.com/saschahofmann>`_
* Philippe Roy `@Balinus <https://github.com/Balinus>`_

.. [*] The contributor list was copied over from xclim and some names might not correspond to any commit in the current repository.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Changes

Fixes
^^^^^
* Gave credits to the package to all previous contributors of ``xclim.sdba`` (:issue:`58`, :pull:`59`).
* Pin `sphinx-codeautolink` to fix ReadTheDocs and correct some docs errors (:pull:`40`).

.. _changes_0.2.0:
Expand Down
4 changes: 2 additions & 2 deletions src/xsdba/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@
for cls in adjustment._generate_SBCK_classes():
adjustment.__dict__[cls.__name__] = cls

__author__ = """Trevor James Smith"""
__email__ = "smith.trevorj@ouranos.ca"
__author__ = """Éric Dupuis"""
__email__ = "dupuis.eric@ouranos.ca"
__version__ = "0.2.0"
4 changes: 2 additions & 2 deletions tests/test_xsdba.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ def test_package_metadata():

with metadata.open() as f:
contents = f.read()
assert """Trevor James Smith""" in contents
assert '__email__ = "smith.trevorj@ouranos.ca"' in contents
assert """Éric Dupuis""" in contents
assert '__email__ = "dupuis.eric@ouranos.ca"' in contents
assert '__version__ = "0.2.0"' in contents

0 comments on commit 191f0c9

Please sign in to comment.