diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 6c97bfd4..e295ab5c 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -33,7 +33,11 @@ e.g. ## How to test - +```cmd +make devenv +source .venv/bin/activate +make play +``` ## Checklist diff --git a/Makefile b/Makefile index 6667fa3b..635ef2d5 100644 --- a/Makefile +++ b/Makefile @@ -11,8 +11,9 @@ SHELL = /bin/bash OUTPUT_DIR = $(CURDIR)/.output TEMPLATE = $(CURDIR) +VERSION := $(shell cat VERSION) -#----------------------------------- +# PYTHON ENVIRON ----------------------------------- .PHONY: devenv .venv: @python3 --version @@ -23,13 +24,9 @@ TEMPLATE = $(CURDIR) wheel \ setuptools -requirements.txt: requirements.in - # freezes requirements - .venv/bin/pip-compile --upgrade --build-isolation --output-file $@ $(word2, $^) - devenv: .venv ## create a python virtual environment with tools to dev, run and tests cookie-cutter # installing extra tools - @$