Skip to content

Commit

Permalink
feat(cli): for python > 3.11 log a warning (#12366)
Browse files Browse the repository at this point in the history
  • Loading branch information
anshbansal authored Jan 16, 2025
1 parent ad0fbd7 commit 18701b7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions metadata-ingestion/src/datahub/entrypoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@

MAX_CONTENT_WIDTH = 120

if sys.version_info >= (3, 12):
click.secho(
"Python versions above 3.11 are not tested with. Please use Python 3.11.",
fg="red",
)


@click.group(
context_settings=dict(
Expand Down

0 comments on commit 18701b7

Please sign in to comment.