Skip to content
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
7 changes: 5 additions & 2 deletions vortexasdk/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,11 @@ def _warn_user_if_sdk_version_outdated() -> None:
f"You are using {sdk_pkg_name} version {__version__}, however version {latest_sdk_version} is available.\n"
f"You should consider upgrading via the 'pip install {sdk_pkg_name} --upgrade' command."
)
except Exception:
logger.warning("Outdated SDK version check could not be completed. \n")
except Exception as e:
logger.warning(
"Outdated SDK version check could not be completed. See error below for more information."
)
logger.warning(e)


def _load_api_key():
Expand Down
2 changes: 1 addition & 1 deletion vortexasdk/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.11"
__version__ = "1.0.12"
Loading