From 4c162b23be1561d34b725ba1482bc804545346d4 Mon Sep 17 00:00:00 2001 From: gawor Date: Thu, 12 Sep 2024 15:55:13 +0200 Subject: [PATCH] bump DOGlib to 1.0.9-ax --- dogui/dogui/views_ui.py | 5 +++++ pyproject.toml | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/dogui/dogui/views_ui.py b/dogui/dogui/views_ui.py index a85dd32..d3a2084 100644 --- a/dogui/dogui/views_ui.py +++ b/dogui/dogui/views_ui.py @@ -38,8 +38,13 @@ def home(request: HttpRequest) -> HttpResponse: # use_dtr = pid_form.cleaned_data['use_dtr_field'] # api_url += "&use_dtr=" + use_dtr + logging.critical("API ENDPOINT") + logging.critical(api_url) + api_response = requests.get(api_url, verify=settings.VERIFY_SSL) if functionality == 'expanddatatype': + logging.critical("API RESPONSE") + logging.critical(api_response) taxonomy_tree = TaxonomyTree(api_response.json()) context.push({"taxonomy_tree": taxonomy_tree}) else: diff --git a/pyproject.toml b/pyproject.toml index 9ca5203..43c930b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,8 @@ homepage = "" repository = "https://github.com/clarin-eric/DOGapp/" [tool.poetry.dependencies] -doglib = { url = "https://github.com/clarin-eric/DOGlib/releases/download/1.0.8/doglib-1.0.8-py3-none-any.whl" } +doglib = { url = +"https://github.com/clarin-eric/DOGlib/releases/download/1.0.9-a1/doglib-1.0.9a1-py3-none-any.whl" } Django = '4.2.15' django-cors-headers = '4.4.0' django-debug-toolbar = '4.4.6'