Skip to content

Commit

Permalink
🐛 fix version check
Browse files Browse the repository at this point in the history
  • Loading branch information
antirotor committed Feb 20, 2024
1 parent 4ee4350 commit 8aef031
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 @@ -4,7 +4,7 @@
import os
import sys

if sys.version_info < (3, 4):
if sys.version_info > (3, 4):
import importlib as imp
else:
import imp
Expand Down

0 comments on commit 8aef031

Please sign in to comment.