Skip to content

Commit

Permalink
Merge pull request #468 from HXLStandard/HXL-74
Browse files Browse the repository at this point in the history
Hxl 74
  • Loading branch information
davidmegginson committed Jun 1, 2023
2 parents c74cc32 + 764e183 commit bb08f75
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions hxl_proxy/controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,10 @@ def about():
we can tell easily what's deployed.
"""
# include version information for these packages
releases = {}
for package in ['hxl-proxy', 'libhxl', 'flask', 'flask-caching', 'redis', 'requests', 'requests_cache', 'structlog', 'urllib3',]:
releases = {
'hxl_proxy': hxl_proxy.__version__,
}
for package in ['libhxl', 'flask', 'flask-caching', 'redis', 'requests', 'requests_cache', 'structlog', 'urllib3',]:
try:
releases[package] = importlib.metadata.version(package)
except Exception as e:
Expand Down

0 comments on commit bb08f75

Please sign in to comment.