From 80a2e80b1cc713b7c50dc610c241d63775b9c76b Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Sat, 6 Apr 2019 18:54:41 +0200 Subject: [PATCH] Upgrade django and stuff --- src/requirements/dev.txt | 2 +- src/requirements/production.txt | 14 +++++++------- src/setup.py | 16 ++++++++-------- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/requirements/dev.txt b/src/requirements/dev.txt index 4dfadffead..e1937fe86e 100644 --- a/src/requirements/dev.txt +++ b/src/requirements/dev.txt @@ -1,4 +1,4 @@ -django-debug-toolbar==1.9.1 +django-debug-toolbar==1.11 sqlparse==0.2.1 # pinned due to difficulties with django-debug-toolbar # Testing requirements pycodestyle==2.5.* diff --git a/src/requirements/production.txt b/src/requirements/production.txt index 2f109447e4..38836c2888 100644 --- a/src/requirements/production.txt +++ b/src/requirements/production.txt @@ -1,19 +1,19 @@ # Functional requirements -Django>=2.1,<2.2 -djangorestframework==3.8.* -python-dateutil +Django==2.2.* +djangorestframework==3.9.* +python-dateutil==2.8.* pytz -django-bootstrap3==10.0.* +django-bootstrap3==11.0.* django-formset-js-improved==0.5.0.2 django-compressor==2.2.* django-hierarkey==1.0.*,>=1.0.3 -django-filter==2.0.* +django-filter==2.1.* reportlab==3.5.* PyPDF2==1.26.* Pillow==5.* django-libsass libsass -django-otp==0.4.* +django-otp==0.5.* python-u2flib-server==4.* django-formtools==2.1 celery==4.3.* @@ -39,7 +39,7 @@ oauthlib==2.1.* django-jsonfallback>=2.1.2 psycopg2-binary # Stripe -stripe==2.0.* +stripe==2.24.* # PayPal paypalrestsdk==1.13.* pycparser==2.13 # https://github.com/eliben/pycparser/issues/147 diff --git a/src/setup.py b/src/setup.py index db1a096167..37145fba53 100644 --- a/src/setup.py +++ b/src/setup.py @@ -87,21 +87,21 @@ setup( keywords='tickets web shop ecommerce', install_requires=[ - 'Django>=2.1,<2.2', - 'djangorestframework==3.8.*', - 'python-dateutil==2.4.*', + 'Django==2.2.*', + 'djangorestframework==3.9.*', + 'python-dateutil==2.8.*', 'pytz', - 'django-bootstrap3==10.0.*', + 'django-bootstrap3==11.0.*', 'django-formset-js-improved==0.5.0.2', 'django-compressor==2.2.*', 'django-hierarkey==1.0.*,>=1.0.2', - 'django-filter==2.0.*', + 'django-filter==2.1.*', 'reportlab==3.5.*', 'Pillow==5.*', 'PyPDF2==1.26.*', 'django-libsass', 'libsass', - 'django-otp==0.4.*', + 'django-otp==0.5.*', 'python-u2flib-server==4.*', 'django-formtools==2.1', 'celery==4.3.*', @@ -123,7 +123,7 @@ setup( 'pycparser==2.13', 'django-redis==4.10.*', 'redis==3.2.*', - 'stripe==2.0.*', + 'stripe==2.24.*', 'chardet<3.1.0,>=3.0.2', 'mt-940==3.2', 'django-i18nfield>=1.4.0', @@ -144,7 +144,7 @@ setup( ], extras_require={ 'dev': [ - 'django-debug-toolbar==1.9.1', + 'django-debug-toolbar==1.1111', 'sqlparse==0.2.1', 'pycodestyle==2.5.*', 'pyflakes==2.1.*',