All contributions are much welcome and greatly appreciated! Expect to be credited for you effort.
Generally try to limit the scope of any Pull Request to an atomic update if possible. This way, it's much easier to assess and review your changes.
You should expect a considerably faster turn around if you submit two or more PRs instead of baking them all into one major PR.
Good pull requests, patches, improvements, new features are a fantastic help. They should remain focused in scope and avoid containing unrelated commits.
Please ask first before embarking on any significant pull request (e.g. implementing features, refactoring code, porting to a different language), otherwise you risk spending a lot of time working on something that the project's developers might not want to merge into the project. For trivial things, or things that don't require a lot of your time, you can go ahead and make a PR.
Please adhere to the coding guidelines used throughout the project (indentation, accurate comments, etc.) and any other requirements (such as test coverage).
Adhering to the following process is the best way to get your work included in the project:
-
Fork the project, clone your fork, and configure the remotes:
# Clone your fork of the repo into the current directory git clone https://github.com/twopointone/stripe-integrations.git # Navigate to the newly cloned directory cd stripe_integrations # Assign the original repo to a remote called "upstream" git remote add upstream https://github.com/twopointone/stripe-integrations.git
-
If you cloned a while ago, get the latest changes from upstream:
git checkout main git pull upstream main
-
Setup Python
Setup base Python with https://www.python.org/downloads/
-
Install Poetry and Setup Project
- Install Poetry by following the official installation guide here.
- All project dependencies are managed using Poetry. The project’s direct dependencies are listed in
pyproject.toml
. Runningpoetry lock
generatespoetry.lock
which has all versions pinned. - Run
poetry install
to install all project dependencies listed inpoetry.lock
. This ensures that everyone using the library will get the same versions of the dependencies. - Run
poetry run pre-commit install
in order to enable all pre-commit hooks.
Note: The
run
command executes the given command inside the project’s virtualenv create by Poetry.- Example:
poetry run python your_script.py
Tip: We recommend that you use this workflow and keep
pyproject.toml
as well aspoetry.lock
under version control to make sure all computers and environments run exactly the same code. -
Create a new topic branch (off the main project development branch) to contain your feature, change, or fix:
git checkout -b <topic-branch-name>
-
Commit your changes in logical chunks. Please adhere to these git commit message guidelines or your code is unlikely be merged into the main project. Use Git's interactive rebase feature to tidy up your commits before making them public.
-
The pull request should include tests for relevant changes.
-
If the pull request adds functionality, the docs should be updated.
-
Update the changelog present under
docs/changelog.md
following keep a changelog conventions. -
Locally merge (or rebase) the upstream development branch into your topic branch:
git pull [--rebase] upstream main
- Push your topic branch up to your fork:
git push origin <topic-branch-name>
- Open a Pull Request
with a clear title and description against the
main
branch.
IMPORTANT: By submitting a patch, you agree to allow the project owners to license your work under the terms of the MIT License (if it includes code changes) and under the terms of the Creative Commons Attribution 3.0 Unported License (if it includes documentation changes).
- Read and pay attention to current code in the repository
- For the Python part, we follow black for formatting code. We use modified configuration of flake8 to check for linting errors that complies formatting standards of
black
. Once you're ready to commit changes, format your code withblack
and check your code withflake8
. Optionally, setuppre-commit
withpoetry run pre-commit install
to do it automatically before commit. - Install a plugin for EditorConfig and let it handle some formatting issues for you.