Contributing
Parsita is free and open source software developed under an MIT license. Development occurs at the GitHub project. Contributions, big and small, are welcome.
Bug reports and feature requests may be made directly on the issues tab.
To make a pull request, you will need to fork the repo, clone the repo, make the changes, run the tests, push the changes, and open a PR.
Cloning the repo
To make a local copy of Parsita, clone the repository with git:
git clone https://github.com/drhagen/parsita.git
Installing from source
Parsita uses Poetry as its packaging and dependency manager. In whatever Python environment you prefer, install Poetry and then use Poetry to install Parsita and its dependencies:
pip install poetry
poetry install
Testing
Parsita uses pytest to run the tests in the tests/
directory. The test command is encapsulated with Nox:
nox -e test
This will try to test with all compatible versions that nox
can find. To run the tests with only a particular version, run something like this:
nox -e test-3.9
It is good to run the tests locally before making a PR, but it is not necessary to have all Python versions run. It is rare for a failure to appear in a single version, and the CI will catch it anyway.
Code quality
Parsita uses Black, isort, and Flake8 to do ensure a minimum standard of code quality. The code quality commands are encapsulated with Nox:
nox -e black
nox -e isort
nox -e lint
Generating the docs
Parsita uses MkDocs to generate HTML docs from Markdown. For development purposes, they can be served locally without needing to build them first:
mkdocs serve
To deploy the current docs to GitHub Pages, Parsita uses the MkDocs gh-deploy
command that builds the static site on the gh-pages
branch, commits, and pushes to the origin:
mkdocs gh-deploy
Making a release
- Bump
- Increment version in
pyproject.toml
- Commit with message "Bump version number to X.Y.Z"
- Push commit to GitHub
- Check GitHub Actions to ensure all tests pass
- Check that code coverage is 100%
- Increment version in
- Tag
- Tag commit with "vX.Y.Z"
- Push commit to GitHub
- Check GitHub Actions for tag
- Build
- Clear
dist/
- Run
poetry build
- Verify that sdist (
.tar.gz
) and bdist (.whl
) are indist/
- Clear
- Publish
- Run
poetry publish -r test
- Check PyPI test server for good upload
- Run
poetry publish
- Check PyPI for good upload
- Run
- Document
- Create GitHub release with name "Parsita X.Y.Z" and major changes in body
- If appropriate, deploy updated docs