Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update requirements #224

Merged
merged 2 commits into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 15 additions & 17 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,20 @@
global_v2router.registry.extend(real411_v2router.registry)

urlpatterns = [
re_path("schema/", SpectacularAPIView.as_view(), name="schema"),
re_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("schema/", SpectacularAPIView.as_view(), name="schema"),
path("docs/", SpectacularSwaggerView.as_view(url_name="schema"), name="swagger-ui"),
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
Loading