Skip to content

Commit

Permalink
SDK-401: Fix inflection version upgrade on basis of python version (#316
Browse files Browse the repository at this point in the history
)
  • Loading branch information
anmol-dhingra authored and chattarajoy committed Apr 22, 2020
1 parent 053843a commit 1645310
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
import sys
from setuptools import setup

INSTALL_REQUIRES = ['requests >=1.0.3', 'boto >=2.45.0', 'six >=1.2.0', 'urllib3 >= 1.0.2', 'inflection >= 0.3.1']
INSTALL_REQUIRES = ['requests >=1.0.3', 'boto >=2.45.0', 'six >=1.2.0', 'urllib3 >= 1.0.2']

if sys.version_info < (2, 7, 0):
INSTALL_REQUIRES.append('argparse>=1.1')
if sys.version_info < (3, 5):
INSTALL_REQUIRES.append('inflection==0.3.1')
else:
INSTALL_REQUIRES.append('inflection>=0.3.1')


def read(fname):
Expand Down

0 comments on commit 1645310

Please sign in to comment.