-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update contribution guidelines
- Loading branch information
Showing
2 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ The existing Python modules are available in the dbt Jinja context under the `mo | |
While in preview, this package is only available from GitHub: | ||
|
||
``` | ||
pip install git+https://github.com/Bilbottom/[email protected].2 | ||
pip install git+https://github.com/Bilbottom/[email protected].3 | ||
``` | ||
|
||
This will be made available on PyPI once it's ready for general use. | ||
|
@@ -130,3 +130,14 @@ This is still in preview, and there are a few things to be added before it's rea | |
- Support for importing any number of packages (currently only one package is supported) | ||
- Configuration via config files and CLI arguments (currently only environment variables are supported) | ||
- More robust testing | ||
## Contributing 🤝 | ||
Raise an issue, or fork the repo and open a pull request. | ||
This project uses [Poetry](https://python-poetry.org/) for dependency management and [pre-commit](https://pre-commit.com/) for linting. After cloning the repo, install the dependencies and enable pre-commit: | ||
``` | ||
poetry install --sync --with dev,test | ||
pre-commit install --install-hooks | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters