Skip to content

Commit

Permalink
update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Buhle79 committed Aug 12, 2024
1 parent deae241 commit 3e57b34
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
30 changes: 15 additions & 15 deletions healthcheck/urls.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.contrib import admin
from django.urls import include, re_path # noqa: F401
from django.urls import include, path # noqa: F401
from django.conf import settings
from django.conf.urls.static import static
from rest_framework import routers
Expand All @@ -25,22 +25,22 @@
global_v2router.registry.extend(real411_v2router.registry)

urlpatterns = [
re_path("schema/", SpectacularAPIView.as_view(), name="schema"),
re_path(
path("schema/", SpectacularAPIView.as_view(), name="schema"),
path(
"docs/", SpectacularSwaggerView.as_view(url_name="schema"), name="swagger-ui"
),
re_path("prometheus/", include("django_prometheus.urls")),
re_path("ht/", include("health_check.urls")),
re_path("admin/", admin.site.urls),
re_path("v1/", include("contacts.urls", namespace="api")),
re_path("v1/", include("selfswab.urls", namespace="api2")),
re_path("v1/", include("tbconnect.urls", namespace="api3")),
re_path("v1/", include("clinicfinder.urls")),
re_path("v2/", include(global_v2router.urls)),
re_path("v3/", include(v3router.urls)),
re_path("v4/", include(v4router.urls)),
re_path("api/v5/", include(v5router.urls)),
re_path("v1/vaxchamps/", include("vaxchamps.urls")),
path("prometheus/", include("django_prometheus.urls")),
path("ht/", include("health_check.urls")),
path("admin/", admin.site.urls),
path("v1/", include("contacts.urls", namespace="api")),
path("v1/", include("selfswab.urls", namespace="api2")),
path("v1/", include("tbconnect.urls", namespace="api3")),
path("v1/", include("clinicfinder.urls")),
path("v2/", include(global_v2router.urls)),
path("v3/", include(v3router.urls)),
path("v4/", include(v4router.urls)),
path("api/v5/", include(v5router.urls)),
path("v1/vaxchamps/", include("vaxchamps.urls")),
]

# Need to add this for media files to work for development
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ chardet==3.0.4
click==8.1.2
Django==4.2.15
django-cors-headers==3.4.0
django-environ==0.4.5
django-environ==0.11.2
django-filter==2.4.0
django-health-check==3.16.3
django-phonenumber-field==8.0.0
Expand All @@ -25,7 +25,7 @@ flake8==7.1.1
future==0.18.3
google-cloud-bigquery==1.27.2
idna==3.7
importlib-metadata==1.7.0
importlib-metadata==8.2.0
iso6709==0.1.5
isort==5.13.2
kombu==5.4.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages, setup

requirements = [
"django-environ==0.4.5",
"django-environ==0.11.2",
"psycopg2==2.9.9",
"requests==2.32.0",
"rapidpro-python==2.6.1",
Expand Down

0 comments on commit 3e57b34

Please sign in to comment.