Skip to content

Commit

Permalink
requirements: Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed (ODSC) committed Jul 26, 2024
1 parent 8b595eb commit 1d5a6ae
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 13 deletions.
3 changes: 1 addition & 2 deletions cove_project/urls.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
from django.conf.urls import url
from django.conf.urls.static import static
from django.conf import settings
from libcoveweb2.urls import urlpatterns
import cove_bods.views
from django.urls import re_path

urlpatterns += [re_path(r"^$", cove_bods.views.NewInput.as_view(), name="index")]
urlpatterns += [url(r'^data/(.+)$', cove_bods.views.ExploreBODSView.as_view(), name='explore')]
urlpatterns += [re_path(r'^data/(.+)$', cove_bods.views.ExploreBODSView.as_view(), name='explore')]

urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dealer
sentry-sdk
Django>3.2,<3.3
Django>5.0,<5.1
jsonschema
libcovebods>=0.15.0
libcoveweb2>=0.1.0
Expand Down
5 changes: 1 addition & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ amqp==5.1.1
# via kombu
asgiref==3.7.2
# via django
async-timeout==4.0.2
# via redis
attrs==23.1.0
# via jsonschema
backports-datetime-fromisoformat==2.0.0
Expand Down Expand Up @@ -46,7 +44,7 @@ dealer==2.1.0
# via -r requirements.in
defusedxml==0.7.1
# via odfpy
django==3.2.19
django==5.0.7
# via
# -r requirements.in
# django-bootstrap3
Expand Down Expand Up @@ -106,7 +104,6 @@ python-dateutil==2.8.2
pytz==2023.3
# via
# celery
# django
# flattentool
# libcovebods
redis==4.5.5
Expand Down
7 changes: 1 addition & 6 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ async-generator==1.10
# via
# trio
# trio-websocket
async-timeout==4.0.2
# via
# -r requirements.txt
# redis
attrs==23.1.0
# via
# -r requirements.txt
Expand Down Expand Up @@ -89,7 +85,7 @@ defusedxml==0.7.1
# via
# -r requirements.txt
# odfpy
django==3.2.19
django==5.0.7
# via
# -r requirements.txt
# django-bootstrap3
Expand Down Expand Up @@ -213,7 +209,6 @@ pytz==2023.3
# via
# -r requirements.txt
# celery
# django
# flattentool
# libcovebods
redis==4.5.5
Expand Down

0 comments on commit 1d5a6ae

Please sign in to comment.