Skip to content

Commit

Permalink
bump DOGlib to 1.0.9-ax
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalGawor committed Sep 12, 2024
1 parent f5fd4c0 commit 4c162b2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions dogui/dogui/views_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 4c162b2

Please sign in to comment.