aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2019-07-03 12:37:35 -0400
committerParker Berberian <pberberian@iol.unh.edu>2019-07-08 10:41:44 -0400
commit9c68247105e075fb7364af99cb3ee26c1a82b65b (patch)
tree15ebb9e998eafd989304e5f5d729797b441755a8
parente0b8bb3ee3c218a65562acdc5e76f714aab92926 (diff)
Update Dependencies
Removes or upgrades the dependencies in requirements.txt Change-Id: I4e66348fc80259b4a2f64ca912556f7d847f0645 Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
-rw-r--r--requirements.txt11
-rw-r--r--src/api/urls.py10
-rw-r--r--src/pharos_dashboard/settings.py3
3 files changed, 5 insertions, 19 deletions
diff --git a/requirements.txt b/requirements.txt
index 55e5fc9..a64d33f 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,20 +1,17 @@
celery==3.1.23
-cryptography==2.3.1
-Django==2.1
+cryptography==2.6.1
+Django==2.2
django-bootstrap4==0.0.8
-django-crispy-forms==1.7.2
django-filter==2.0.0
-django-registration==2.1.2
djangorestframework==3.8.2
gunicorn==19.6.0
jira==1.0.7
-jsonpickle==0.9.3
oauth2==1.9.0.post1
oauthlib==1.1.2
pika==0.10.0
psycopg2==2.6.2
PyJWT==1.4.2
-requests==2.11.0
-django-fernet-fields==0.5
+requests==2.22.0
+django-fernet-fields==0.6
pyyaml==3.13
pytz==2018.5
diff --git a/src/api/urls.py b/src/api/urls.py
index 7a48425..778f6eb 100644
--- a/src/api/urls.py
+++ b/src/api/urls.py
@@ -24,13 +24,10 @@ Including another URLconf
1. Import the include() function: from django.conf.urls import url, include
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
"""
-from django.conf.urls import url, include
+from django.conf.urls import url
from django.urls import path
-from rest_framework import routers
from api.views import (
- BookingViewSet,
- UserViewSet,
lab_profile,
lab_status,
lab_inventory,
@@ -46,12 +43,7 @@ from api.views import (
GenerateTokenView
)
-router = routers.DefaultRouter()
-router.register(r'bookings', BookingViewSet)
-router.register(r'user', UserViewSet)
-
urlpatterns = [
- url(r'^', include(router.urls)),
path('labs/<slug:lab_name>/profile', lab_profile),
path('labs/<slug:lab_name>/status', lab_status),
path('labs/<slug:lab_name>/inventory', lab_inventory),
diff --git a/src/pharos_dashboard/settings.py b/src/pharos_dashboard/settings.py
index 86de78c..6bd0a2a 100644
--- a/src/pharos_dashboard/settings.py
+++ b/src/pharos_dashboard/settings.py
@@ -36,9 +36,6 @@ INSTALLED_APPS = [
'django.contrib.staticfiles',
'django.contrib.humanize',
'bootstrap4',
- 'crispy_forms',
- 'rest_framework',
- 'rest_framework.authtoken',
]
MIDDLEWARE = [