From c10d4038b82233d869163056287cc0b9e6a9f475 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Sun, 15 May 2016 23:30:16 -0700 Subject: [PATCH] Fix `make deps` (#26) This was not working since there is no longer any production requirements file. --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e232923..8630798 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,7 @@ SHELL := /bin/bash deps: pip install --upgrade \ - -r requirements/development.txt \ - -r requirements/production.txt + -r requirements/development.txt sdist: python setup.py sdist