Everyone is welcome to contribute to best-practices
. We strictly
enforce our Code of Conduct, so please review it before
contributing.
- Fork the repository
- Clone your fork of the repository
git clone git@github.com:[YOUR_USERNAME_HERE]/best-practices.git && cd best-practices
- Create a venv and activate it
python -m venv venv && source venv/bin/activate
- Create a feature branch for your work
git checkout -b relevant-branch-name-here
- Implement your changes, run the tests and make a commit to your branch
- Push your branch to GitHub
git push origin relevant-branch-name-here
- Create a PR on the upstream repo (this repo)
The best-practices is a collection of utility functions with a playground theme. The purpose is to serve as an example to inbound repositories. Because of that the documentation, pre-commit configuration and GitHub actions are the most important aspects of the project. The code itself is secondary.
python3 -m unittest
Nothing special here!
The repo is configured to automatically release to PyPI when a new tag is pushed to GitHub. This makes use of PyPI's trusted publishers.
In the case a manual release is necessary, you'll need to use Twine and Build.
# Install packaging dependencies
python3 -m pip install -U twine build
# Build the project
python3 -m build
# Release to test PyPI
python3 -m twine upload --repository testpypi dist/*
# Release to PyPI
python3 -m twine upload dist/*