diff --git a/src/requirements/production.txt b/src/requirements/production.txt index 9f0e6af48..a54a757ea 100644 --- a/src/requirements/production.txt +++ b/src/requirements/production.txt @@ -4,8 +4,7 @@ python-dateutil pytz django-bootstrap3>=6.2,<6.3 git+https://github.com/pretix/django-formset-js.git@master#egg=django-formset-js -#django-compressor>=1.6,<2.0 -git+https://github.com/django-compressor/django-compressor.git@develop#egg=django-compressor +django-compressor==2.0 reportlab>=3.2,<3.3 git+https://github.com/pretix/PyPDF2.git@pretix#egg=PyPDF2 easy-thumbnails>=2.2,<3 diff --git a/src/setup.py b/src/setup.py index 9096a1c5d..1235d613a 100644 --- a/src/setup.py +++ b/src/setup.py @@ -30,11 +30,13 @@ setup( keywords='tickets web shop ecommerce', install_requires=[ - 'Django>=1.8,<1.9', 'python-dateutil>=2.4,<2.5', - 'pytz', 'django-bootstrap3>=6.1,<6.2', 'django-formset-js', - 'cleanerversion>=1.5,<1.7', 'django-compressor>=1.6,<2.0', - 'reportlab>=3.1.44,<3.2', 'PyPDF2', 'BeautifulSoup4', 'html5lib', - 'slimit', 'lxml', 'static3==0.6.1', 'dj-static', 'chardet' + 'Django>=1.9,<1.10', 'python-dateutil>=2.4,<2.5', + 'pytz', 'django-bootstrap3>=6.2,<6.3', 'django-formset-js', + 'django-compressor==2.0', 'reportlab>=3.2,<3.3', + 'easy-thumbnails>=2.2,<3' + 'PyPDF2', 'BeautifulSoup4', 'html5lib', + 'slimit', 'lxml', 'static3==0.6.1', 'dj-static', 'chardet', + 'csscompressor' ], extras_require={ 'dev': ['django-debug-toolbar>=1.3.0,<2.0'], @@ -44,7 +46,7 @@ setup( 'mysql': ['mysqlclient'], 'paypal': ['paypalrestsdk>=1.9,<1.10,<2.0'], 'postgres': ['psycopg2'], - 'redis': ['django-redis>=4.1,<4.2', 'django-redis>=4.1,<4.2'], + 'redis': ['django-redis>=4.1,<4.2', 'redis>=2.10,<2.11'], 'stripe': ['stripe>=1.22,<1.23'] },