Hopefully fixed ci error
Some checks failed
continuous-integration/drone the build failed

This commit is contained in:
Jef Roosens 2021-04-24 22:56:27 +02:00
parent 3e7a2edf13
commit 7fbec4992e
Signed by: Jef Roosens
GPG key ID: 955C0660072F691F
3 changed files with 7 additions and 6 deletions

View file

@ -1,13 +1,13 @@
# =====CONFIG=====
# Devop environment runs in 3.8
# TODO switch this to python3.6
PYTHON=python3.9
PYTHON=python3.6
# =====RECIPES=====
.venv/bin/activate: setup.py
'$(PYTHON)' -m venv .venv
.venv/bin/pip install -e .[dev]
.venv/bin/pip install -e .[dev] -e .[ci]
venv: .venv/bin/activate
.PHONY: venv