Skip to content

Commit

Permalink
refactor(cli): 🩺 disable version check
Browse files Browse the repository at this point in the history
  • Loading branch information
kikkomep committed Nov 6, 2024
1 parent b45fb45 commit eddf2c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions rocrate_validator/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ def cli(ctx: click.Context, debug: bool, version: bool, disable_color: bool, no_

try:
# Check the python version
if not check_python_version():
console.print(
"\n[bold][red]ERROR:[/red] A Python version "
f"{'.'.join([str(_) for _ in get_min_python_version()])} or newer is required ! [/bold]")
sys.exit(1)
# if not check_python_version():
# console.print(
# "\n[bold][red]ERROR:[/red] A Python version "
# f"{'.'.join([str(_) for _ in get_min_python_version()])} or newer is required ! [/bold]")
# sys.exit(1)

# If the version flag is set, print the version and exit
if version:
Expand Down

0 comments on commit eddf2c5

Please sign in to comment.