We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47670ae commit 5b34df6Copy full SHA for 5b34df6
src/murfey/bootstrap/__main__.py
@@ -73,7 +73,7 @@ def _download_to_file(url: str, outfile: str):
73
# Check that Python version is supported
74
print(f"Python version: {sys.version_info.major}.{sys.version_info.minor}")
75
# if sys.hexversion < 0x3080000:
76
- if sys.version_info >= (3, 9): # Use version_info tuple instead
+ if sys.version_info < (3, 9): # Use version_info tuple instead
77
exit(
78
"Your python version is too old to support Murfey. "
79
"You need at least Python 3.9"
0 commit comments