Skip to content

Instantly share code, notes, and snippets.

@hynek

hynek/Makefile Secret

Created November 29, 2018 14:01
Embed
What would you like to do?
update-deps:
pip-compile --upgrade --generate-hashes --output-file requirements/main.txt requirements/main.in
pip-compile --upgrade --generate-hashes --output-file requirements/dev.txt requirements/dev.in
init:
pip install --editable .
pip install --upgrade -r requirements/main.txt -r requirements/dev.txt
rm -rf .tox
update: update-deps init
.PHONY: update-deps init update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment