To set up Itchcraft, you need three things:
-
The Python version manager
pyenv
. -
A system-wide Python installation.
-
The Python dependency manager
poetry
.
The Python version manager pyenv
makes sure you can always keep
the exact Python version required by Itchcraft,
regardless of your system Python.
To install pyenv
on Linux or WSL2, first make sure Python 3 is
installed. Then follow the Basic GitHub Checkout method described
at github.com/pyenv/pyenv.
To verify your pyenv
is working, run:
pyenv --version
Make sure you have Python 3.8 or higher installed on your system and available in your PATH.
To check, run:
python --version
If that fails, try:
python3 --version
Proceed after you’ve confirmed one of those to work.
You’ll need poetry
to manage development dependencies and the venv.
If you’re on Linux or WSL2, use your system package manager to install Poetry.
Alternatively, use one of the installation methods described in Poetry’s documentation.
To verify Poetry is working, run:
poetry --version
To set up your virtual environment, follow these steps:
-
Go to the project root directory.
-
Run
pyenv install -s
. -
Run
pyenv exec python -m venv .venv
. -
Run
poetry install
.
You need to do the above steps only once.
To update your dependencies after a git pull
, run poetry update
.
To see a list of available tasks, run: poetry run poe tasks
To execute Itchcraft, run:
poetry run poe cli
To execute the tests, run:
poetry run poe tests
To execute a single test, run e. g.:
poetry run poe tests -vv tests/test_api.py::test_hello
To execute the linter, run:
poetry run poe linter
To execute the static type check, run:
poetry run poe typecheck
If you have act installed and a Docker daemon active, run:
act
To generate project documentation, run:
poetry run poe doc
To open the generated documentation with man
, run:
poetry run poe man
If you get errors after a Git pull, refresh your dependencies:
poetry update
If you’ve run poetry update
and you still get errors, rebuild
the virtual environment:
poetry install
To check Itchcraft’s dependencies for compatible updates, run:
poetry update --dry-run