Merge pull request #3 from dsblank/patch-2

Allow config to use different python executable
This commit is contained in:
Thomas Sileo
2018-06-03 18:16:10 +02:00
committed by GitHub

View File

@@ -1,8 +1,10 @@
PYTHON=python
css:
python -c "import sass; sass.compile(dirname=('sass', 'static/css'), output_style='compressed')"
$(PYTHON) -c "import sass; sass.compile(dirname=('sass', 'static/css'), output_style='compressed')"
password:
python -c "import bcrypt; from getpass import getpass; print(bcrypt.hashpw(getpass().encode('utf-8'), bcrypt.gensalt()).decode('utf-8'))"
$(PYTHON) -c "import bcrypt; from getpass import getpass; print(bcrypt.hashpw(getpass().encode('utf-8'), bcrypt.gensalt()).decode('utf-8'))"
docker:
mypy . --ignore-missing-imports