From 15bd1d9006b9b0167768338470f783dcffad912e Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Sun, 2 Jul 2017 18:41:48 +0200 Subject: [PATCH] Fix missing dependencies in setup.py --- src/requirements/production.txt | 3 --- src/setup.py | 4 +++- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/requirements/production.txt b/src/requirements/production.txt index 69c7692be..35ef7b715 100644 --- a/src/requirements/production.txt +++ b/src/requirements/production.txt @@ -31,9 +31,6 @@ markdown bleach==2.* raven django-i18nfield>=1.0.1 -# API docs -coreapi==2.3.* -pygments # Stripe stripe==1.22.* # PayPal diff --git a/src/setup.py b/src/setup.py index 8d2709028..87bddb8ae 100644 --- a/src/setup.py +++ b/src/setup.py @@ -63,12 +63,14 @@ setup( keywords='tickets web shop ecommerce', install_requires=[ 'Django==1.11.*', + '+djangorestframework==3.6.*', 'python-dateutil==2.4.*', 'pytz', 'django-bootstrap3==8.2.*', 'django-formset-js-improved==0.5.0.1', 'django-compressor==2.1', - 'django-hierarkey==1.0.*', + 'django-hierarkey==1.0.*,>=1.0.2', + 'django-filter==1.0.*', 'reportlab==3.2.*', 'easy-thumbnails==2.4.*', 'PyPDF2==1.26.*',