Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
You can contribute in many ways:
Report bugs at https://github.com/nrdg/cloud_bids_layout/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.
Look through the GitHub issues for bugs. Anything tagged with "bug" and "help wanted" is open to whoever wants to implement it. The maintainers will also try to "good first issue" tag to label issues that we think would be especially appropriate for those new to open-source software contribution.
Look through the GitHub issues for features. Anything tagged with "enhancement" and "help wanted" is open to whoever wants to implement it.
Cloud-BIDS-Layout could always use more documentation, whether as part of the official Cloud-BIDS-Layout docs, in docstrings, or even on the web in blog posts, articles, and such.
The best way to send feedback is to file an issue at https://github.com/nrdg/cloud_bids_layout/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 :)
Ready to contribute? Here's how to set up cloud_bids_layout
for local development.
-
Fork the
cloud_bids_layout
repo on GitHub. -
Clone your fork locally:
$ git clone [email protected]:your_name_here/cloud_bids_layout.git
-
Activate the pre-commit formatting hook:
pre-commit install
-
It's a good idea to use a virtualenv or conda environment to isolate your Cloud-BIDS-Layout development environment from your systems Python installation. Assuming you have virtualenvwrapper installed, this is how you set up your environment for local development:
$ mkvirtualenv
If you are using conda, use
$ conda create --name cloud_bids_layout python=3.7 --no-default-packages
-
Install your local copy:
$ cd cloud_bids_layout/ $ pip install -e .[dev]
-
Create a branch for local development::
$ git checkout -b name-of-your-bugfix-or-feature
Now you can make your changes locally.
-
When you're done making changes, check that your changes pass the linting and unit tests:
$ make lint $ make test
-
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
-
Submit a pull request (PR) through the GitHub website. The output of the last
git push
command will supply a link that you can use to open the PR.
Before you submit a pull request, check that it meets these guidelines:
- The pull request should include tests.
- If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.md.
- The pull request should work for Python 3.5, 3.6, 3.7 and 3.8, and for PyPy. Check https://travis-ci.com/nrdg/cloud_bids_layout/pull_requests and make sure that the tests pass for all supported Python versions.
A reminder for the maintainers on how to deploy.
Cloud-BIDS-Layout pushes a development version to
Test-PyPI on every pull request merged into
the main branch. To release a new version, use the
publish_release.sh
script from the root directory, i.e.:
.maintenance/publish_release.sh <version_number>
For releases, use the following format for <version_number>:
"v..".
When executed, this will ask you if you want to customize the
CHANGES.rst
document or the release notes. After that,
GitHub actions will take care of publishing the new release on PyPI and
creating a release on GitHub.