mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-05-07 17:29:50 +00:00
Fix python version check in makefile, close #971
This commit is contained in:
parent
85e22089bd
commit
e957f840da
2
Makefile
2
Makefile
@ -53,7 +53,7 @@ pyc: | env
|
|||||||
${VENV_PYTHON} -m compileall ${packages}
|
${VENV_PYTHON} -m compileall ${packages}
|
||||||
|
|
||||||
reqs:
|
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.")
|
$(error "Python 3.${REQ_MINOR_VERSION}+ required. Aborting.")
|
||||||
endif
|
endif
|
||||||
ifndef NO_VENV
|
ifndef NO_VENV
|
||||||
|
Loading…
x
Reference in New Issue
Block a user