Skip to content

Commit a8830a7

Browse files
committed
fix: fix version comp
1 parent 2565c89 commit a8830a7

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@
2121

2222
import sys
2323

24-
if sys.version_info < (2, 7):
25-
print("google-api-python-client requires python version >= 2.7.", file=sys.stderr)
26-
sys.exit(1)
27-
if (3, 1) <= sys.version_info < (3, 6):
24+
if sys.version_info < (3, 6):
2825
print("google-api-python-client requires python3 version >= 3.6.", file=sys.stderr)
2926
sys.exit(1)
3027

0 commit comments

Comments
 (0)