Remove Python version check
parent
d4af2be7a0
commit
abe7275f0c
13
Makefile
13
Makefile
|
@ -111,18 +111,7 @@ build-deps-ubuntu:
|
||||||
docs: docs-deps docs-build
|
docs: docs-deps docs-build
|
||||||
|
|
||||||
docs-build: .PHONY
|
docs-build: .PHONY
|
||||||
@if ! /bin/echo -e "import sys\nif sys.version_info < (3,8):\n exit(1)" | python3; then \
|
mkdocs build
|
||||||
if which python3.8; then \
|
|
||||||
echo "python3.8 $(shell which mkdocs) build"; \
|
|
||||||
python3.8 $(shell which mkdocs) build; \
|
|
||||||
else \
|
|
||||||
echo "ERROR: Python version too low. mkdocs-material needs >= 3.8"; \
|
|
||||||
exit 1; \
|
|
||||||
fi; \
|
|
||||||
else \
|
|
||||||
echo "mkdocs build"; \
|
|
||||||
mkdocs build; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
docs-deps: .PHONY
|
docs-deps: .PHONY
|
||||||
pip3 install -r requirements.txt
|
pip3 install -r requirements.txt
|
||||||
|
|
Loading…
Reference in New Issue