Contributions are welcome and greatly appreciated!
Report bugs at https://github.com/PyLops/pyproximal/issues
If you find a bug, please report it including:
- Your operating system name and version.
- Any details about your Python environment.
- Detailed steps to reproduce the bug.
The best way to send feedback is to open an issue at https://github.com/PyLops/pyproximal/issues with tag enhancement.
If you are proposing a new proximal operator or a new feature:
- Explain in detail how it should work.
- Keep the scope as narrow as possible, to make it easier to implement.
Look through the Git issues for operator or feature requests. Anything tagged with enhancement is open to whoever wants to implement it.
Writing new operators is not the only way to get involved and contribute. Create examples with existing operators as well as improving the documentation of existing operators is as important as making new operators and very much encouraged.
Ready to contribute?
-
Fork the
PyLops
repo. -
Clone your fork locally:
git clone https://github.com/your_name_here/pyproximal.git
-
Follow the installation instructions for developers that you find in the README.md or in the online documentation. Ensure that you are able to pass all the tests before moving forward.
-
Create a branch for local development:
git checkout -b name-of-your-branch
Now you can make your changes locally.
-
When you're done making changes, check that old and new tests pass succesfully:
make tests
-
Commit your changes and push your branch to GitLab::
git add . git commit -m "Your detailed description of your changes." git push origin name-of-your-branch
Remember to add
-u
when pushing the branch for the first time. -
Submit a pull request through the GitHub website.
Before you submit a pull request, check that it meets these guidelines:
- The pull request should include new tests for all the core routines that have been developed.
- If the pull request adds functionality, the docs should be updated accordingly.