Compare commits

...

4 Commits

Author SHA1 Message Date
Raphael Michel
d4b9906638 Fix syntax error in setup.py 2017-07-02 18:57:10 +02:00
Raphael Michel
c1c4133ac6 Bump to 1.5.1 2017-07-02 18:45:00 +02:00
Raphael Michel
ff3e127648 Fix missing dependencies in setup.py 2017-07-02 18:44:39 +02:00
Raphael Michel
970b861947 Fix import in unit test 2017-07-02 17:36:38 +02:00
4 changed files with 5 additions and 6 deletions

View File

@@ -1 +1 @@
__version__ = "1.5.0"
__version__ = "1.5.1"

View File

@@ -31,9 +31,6 @@ markdown
bleach==2.*
raven
django-i18nfield>=1.0.1
# API docs
coreapi==2.3.*
pygments
# Stripe
stripe==1.22.*
# PayPal

View File

@@ -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.*',

View File

@@ -1,8 +1,8 @@
import copy
import json
from datetime import datetime, timedelta
from unittest import mock
import mock
import pytest
from django.utils.timezone import now
from pytz import UTC