Contributing¶
Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
You can contribute in many ways:
Types of Contributions¶
Report Bugs¶
Report bugs at https://github.com/hydrologie/xhydro/issues.
If you are reporting a bug, please include:
Your operating system name and version.
Any details about your local setup that might be helpful in troubleshooting.
Detailed steps to reproduce the bug.
Fix Bugs¶
Look through the GitHub issues for bugs. Anything tagged with “bug” and “help wanted” is open to whoever wants to implement it.
Implement Features¶
Look through the GitHub issues for features. Anything tagged with “enhancement” and “help wanted” is open to whoever wants to implement it.
Write Documentation¶
xHydro could always use more documentation, whether as part of the official xHydro docs, in docstrings, or even on the web in blog posts, articles, and such.
Submit Feedback¶
The best way to send feedback is to file an issue at https://github.com/hydrologie/xhydro/issues.
If you are proposing a feature:
Explain in detail how it would work.
Keep the scope as narrow as possible, to make it easier to implement.
Remember that this is a volunteer-driven project, and that contributions are welcome. :)
Get Started!¶
Note
If you are new to using GitHub and git, please read this guide first.
Warning
Anaconda Python users: Due to the complexity of some packages, the default dependency solver can take a long time to resolve the environment. Consider running the following commands in order to speed up the process:
conda install -n base conda-libmamba-solver
conda config --set solver libmamba
For more information, please see the following link: https://www.anaconda.com/blog/a-faster-conda-for-a-growing-community
Alternatively, you can use the mamba package manager, which is a drop-in replacement for conda. If you are already using mamba, replace the following commands with mamba instead of conda.
Ready to contribute? Here’s how to set up xHydro for local development.
First, clone the
xHydrorepo locally.If you are not a
xHydrocollaborator, first fork thexHydrorepo on GitHub, then clone your fork locally.git clone git@github.com:your_name_here/xhydro.gitIf you are a
xHydrocollaborator, clone thexHydrorepo directly.git clone git@github.com:hydrologie/xhydro.git
Install your local copy into a development environment. You can create a new Anaconda development environment with:
conda env create -f environment-dev.yml conda activate xhydro-dev make dev
If you are on Windows, replace the
make devcommand with the following:python -m pip install --group dev python -m pip install --editable . prek install
This installs
xHydroin an “editable” state, meaning that changes to the code are immediately seen by the environment. To ensure a consistent coding style, make dev also installs thepre-commithooks to your local clone. It also installs all the libraries necessary to run theExtremes.jlhooks of theextreme_value_analysismodule.Create a branch for local development:
git checkout -b name-of-your-bugfix-or-featureYou can now make your changes locally.
When you’re done making changes, we strongly suggest running the tests in your environment or with the help of
tox:make lint python -m pytest # Or, to run the tests on multiple builds of Python python -m tox
Note
Running pytest or tox will automatically fetch and cache the testing data for the package to your local cache (using the platformdirs library). On Linux, this is located at
XDG_CACHE_HOME(usually~/.cache). On Windows, this is located at%LOCALAPPDATA%(usuallyC:\Users\username\AppData\Local). On MacOS, this is located at~/Library/Caches.If for some reason you wish to cache this data elsewhere, you can set the
XHYDRO_DATA_DIRenvironment variable to a different location before running the tests. For example, to cache the data in the current working directory, run:export XHYDRO_DATA_DIR=$(pwd)/.cache
Commit your changes and push your branch to GitHub:
git add . git commit -m "Your detailed description of your changes." git push origin name-of-your-bugfix-or-feature
On commit,
prekwill runpre-commitchecks that ensure code quality checks are passing, perform automatic fixes if possible, and warn of violations that require intervention. If your commit fails the checks initially, simply fix the errors, re-add the files, and re-commit.You can always run the hooks manually with:
pre-commit run -aIf you want to skip the
pre-commithooks temporarily, you can pass the –no-verify flag to git commit.Submit a Pull Request through the GitHub website.
When pushing your changes to your branch on GitHub, the documentation will automatically be tested to reflect the changes in your Pull Request. This build process can take several minutes at times. If you are actively making changes that affect the documentation and wish to save time, you can compile and test your changes beforehand locally with:
# To generate the html and open it in your browser make docs # To only generate the html make autodoc make -C docs html # To simply test that the docs pass build checks python -m tox -e docs
If changes to your branch are made on GitHub, you can update your local branch with:
git checkout name-of-your-bugfix-or-feature git fetch git pull origin name-of-your-bugfix-or-feature
If you have merge conflicts, you might need to replace git pull with git merge and resolve the conflicts manually. Resolving conflicts from the command line can be tricky. If you are not comfortable with this, you can ignore the last command and instead use a GUI like PyCharm or Visual Studio Code to merge the remote changes and resolve the conflicts.
Before merging, your Pull Request will need to be based on the main branch of the
xHydrorepository. If your branch is not up-to-date with the main branch, you can perform similar steps as above to update your branch:git checkout name-of-your-bugfix-or-feature git fetch git pull origin main
See the previous step for more information on resolving conflicts.
To prevent unnecessary testing of branches that are not ready for review, the xHydro repository is set up to run tests only when a Pull Request has been “approved” by a maintainer. Similarly, the notebooks within documentation will only be rebuilt when the Pull Request is “approved”, or if the Pull Request makes explicit changes to them. As such, additional changes to the Pull Request might be required after the Pull Request is approved to ensure that the tests pass and the documentation can be built.
Once your Pull Request has been accepted and merged to the main branch, several automated workflows will be triggered:
The
bump-version.ymlworkflow will automatically bump the library’s version. It is not recommended to manually bump the version in your branch when merging (non-release) pull requests. This would cause the version to be bumped twice.ReadTheDocs will automatically build the documentation and publish it to the latest branch of xHydro documentation website.
If your branch is not a fork (i.e. you are a maintainer), your branch will be automatically deleted.
You will have contributed to xHydro!
Warning
If your Pull Request relies on modifications to the testing data of xHydro, you will need to update the testing data repository as well. As a preliminary testing measure, the branch of the testing data can be modified at testing time (from main) by setting the XHYDRO_TESTDATA_BRANCH environment variable to the branch name of the xhydro-testdata repository.
Be sure to consult the ReadMe found at https://github.com/hydrologie/xhydro-testdata as well.
Pull Request Guidelines¶
Before you submit a Pull Request, check that it meets these guidelines:
The Pull Request should include tests and should aim to provide code coverage for all new lines of code. You can use the –cov-report html –cov xhydro flags during the call to
pytestto generate an HTML report and analyse the current test coverage.All functions should be documented with docstrings following the numpydoc format.
If the Pull Request adds a functionality, either update the documentation or create a new notebook that demonstrates the feature. Library-defining features should also be listed in
README.rst.The ChangeLog should be updated with a brief description of the changes made in the Pull Request. If this is your first contribution to the project, please add your name and information to the AUTHORS.rst and .zenodo.json files.
The Pull Request should work for all currently supported Python versions. Check the pyproject.toml or tox.toml files for the supported versions. We aim to follow the support and drop schedule of Python versions as recommended by the NumPy NEP calendar: https://numpy.org/neps/nep-0029-deprecation_policy.html
Tips¶
To run a subset of tests:
python -m pytest tests/test_xhydro.py
You can also directly call a specific test class or test function using:
python -m pytest tests/test_xhydro.py::TestClassName::test_function_name
For more information on running tests, see the pytest documentation.
Translations¶
If you would like to contribute to the French translation of the documentation, you can do so by running the following command:
make initialize-translations
This will create or update the French translation files in the docs/locales/fr/LC_MESSAGES directory. You can then edit the .po files in this directory to provide translations for the documentation.
For convenience, you can simply run the following command:
make translate
Alternatively, you can use the translator.py script located in the CI directory to automatically translate the English documentation to French, which uses Google Translate by default. Note that this script requires the deep-translator package to be installed in your environment.
pip install deep-translator python CI/translator.p
We aim to automate this process eventually but until then, we want to keep the French translation up-to-date with the English documentation at least when a new release is made.
Code of Conduct¶
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.