This document contains information about contributing to this repository. Please read it before contributing.
lanarky
is built with Python 3.9 and managed by Poetry.
Clone this repository and follow the steps below to get started.
conda create -n lanarky python=3.9 -y
conda activate lanarky
You can choose any other environment manager of your choice.
pip install poetry
poetry install --all-extras
lanarky
uses pre-commit
to run code checks and tests before every commit.
To install the pre-commit hooks, run the following commands:
poetry run pre-commit install
To run the pre-commit hooks on all files, run the following command:
make pre-commit
Lanarky uses Makefile to bump versions:
make bump
Note: The make recipe bumps version and auto-commits the changes.