You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python 3.8 is already end of life, include a deprecation warning in the main module about dropping support for it in the near future.
Something like:
importsysimportwarningsfromthehive4py.clientimportTheHiveApiifsys.version_info< (3, 9):
warnings.warn(
message=(
"The `thehive4py` library will soon drop support for Python ""versions below 3.9, as they have reached their end of life. ""Please upgrade to a newer version as soon as possible."
),
category=DeprecationWarning,
stacklevel=2,
)
The text was updated successfully, but these errors were encountered:
Python 3.8 is already end of life, include a deprecation warning in the main module about dropping support for it in the near future.
Something like:
The text was updated successfully, but these errors were encountered: