A release version can be installed using pip with
pip install --upgrade splight-libor if you want one particular version you can use
pip install splight-lib==x.y.zThis library uses uv as package manager. In order to install uv you can
use the command
curl -LsSf https://astral.sh/uv/install.sh | shThen to insall the library you can use the command in development mode you can use
uv syncand for running a python interpreter within the environment you can use
uv run pythonThe package is managed using poetry so we should use this tool for handling
versioning. In particular, the repository contains a Makefile that contains
the commands for updating the splight-lib versions. So, if you need to update
the version you should use the command
make update-version scope=<scope>where scope can be major, minor or patch.
make test