Skip to content

Commit 5b34df6

Browse files
committed
Fix version check
1 parent 47670ae commit 5b34df6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/murfey/bootstrap/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def _download_to_file(url: str, outfile: str):
7373
# Check that Python version is supported
7474
print(f"Python version: {sys.version_info.major}.{sys.version_info.minor}")
7575
# if sys.hexversion < 0x3080000:
76-
if sys.version_info >= (3, 9): # Use version_info tuple instead
76+
if sys.version_info < (3, 9): # Use version_info tuple instead
7777
exit(
7878
"Your python version is too old to support Murfey. "
7979
"You need at least Python 3.9"

0 commit comments

Comments
 (0)