Skip to content

Commit

Permalink
fix: setup.py version check
Browse files Browse the repository at this point in the history
  • Loading branch information
desbma committed Jul 6, 2024
1 parent eb2f8fb commit 51d623e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from setuptools import find_packages, setup

if sys.hexversion < 0x3070000:
if sys.hexversion < 0x3080000:
print(
"Python version %s is unsupported, >= 3.8.0 is needed"
% (".".join(map(str, sys.version_info[:3])))
Expand Down

0 comments on commit 51d623e

Please sign in to comment.