Skip to content

Commit

Permalink
Increment Python version check to support Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Jul 13, 2023
1 parent 7a1e284 commit 414694e
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 @@ -39,7 +39,7 @@ def get_version():
ZLIB_ROOT = None
FUZZING_BUILD = "LIB_FUZZING_ENGINE" in os.environ

if sys.platform == "win32" and sys.version_info >= (3, 12):
if sys.platform == "win32" and sys.version_info >= (3, 13):
import atexit

atexit.register(
Expand Down

0 comments on commit 414694e

Please sign in to comment.