Skip to content

Commit

Permalink
fix: fix version comp
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 committed Dec 9, 2020
1 parent 2565c89 commit a8830a7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions setup.py
Expand Up @@ -21,10 +21,7 @@

import sys

if sys.version_info < (2, 7):
print("google-api-python-client requires python version >= 2.7.", file=sys.stderr)
sys.exit(1)
if (3, 1) <= sys.version_info < (3, 6):
if sys.version_info < (3, 6):
print("google-api-python-client requires python3 version >= 3.6.", file=sys.stderr)
sys.exit(1)

Expand Down

0 comments on commit a8830a7

Please sign in to comment.