From e957f840da624a113ae4a7cae64bb53e78253c90 Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Wed, 9 Feb 2022 21:59:35 -0600 Subject: [PATCH] Fix python version check in makefile, close #971 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 25a13073..4a9f089a 100644 --- a/Makefile +++ b/Makefile @@ -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