Fix python version check in makefile, close #971

This commit is contained in:
Andrew Senetar 2022-02-09 21:59:35 -06:00
parent 85e22089bd
commit e957f840da
Signed by: arsenetar
GPG Key ID: C63300DCE48AB2F1
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ pyc: | env
${VENV_PYTHON} -m compileall ${packages}
reqs:
ifneq ($(shell test $(PYTHON_VERSION_MINOR) -gt $(REQ_MINOR_VERSION); echo $$?),0)
ifneq ($(shell test $(PYTHON_VERSION_MINOR) -ge $(REQ_MINOR_VERSION); echo $$?),0)
$(error "Python 3.${REQ_MINOR_VERSION}+ required. Aborting.")
endif
ifndef NO_VENV