mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-25 09:00:50 +00:00
docs(ingest): Add warning for Python 3.7 deprecation (#8411)
This commit is contained in:
parent
851c5bab9e
commit
6ce157d0ff
@ -23,3 +23,10 @@ if sys.version_info < (3, 7):
|
||||
FutureWarning,
|
||||
stacklevel=2,
|
||||
)
|
||||
elif sys.version_info < (3, 8):
|
||||
warnings.warn(
|
||||
"DataHub will require Python 3.8 or newer soon. "
|
||||
"Please upgrade your Python version to continue using DataHub.",
|
||||
FutureWarning,
|
||||
stacklevel=2,
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user