mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-25 17:15:09 +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,
|
FutureWarning,
|
||||||
stacklevel=2,
|
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