Skip to content

Commit

Permalink
vers
Browse files Browse the repository at this point in the history
  • Loading branch information
SermetPekin committed Apr 21, 2024
1 parent ab0002f commit 5f7ba0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evdspy/EVDSlocal/main_.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def check_compat():
# v_tuple = "3.6.0".split(".")
v_tuple = tuple(map(lambda x: int(x), v_tuple))
v = sys.version # sys.version_info
if (3, 12, -1) < v_tuple:
if (4, 1, -1) < v_tuple:
print_with_failure_style(
f"Your python version is {v}. This program may break because it is currently only compatible with versions between 3.7 and 3.11")
return False
Expand Down

0 comments on commit 5f7ba0e

Please sign in to comment.