Skip to content

Commit

Permalink
Revert "SDK-401: Fix inflection version upgrade on basis of python ve…
Browse files Browse the repository at this point in the history
…rsion (#316)"

This reverts commit 8bf79f9.
  • Loading branch information
chattarajoy committed Apr 22, 2020
1 parent 5b6694c commit 053843a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,9 @@
import sys
from setuptools import setup

INSTALL_REQUIRES = ['requests >=2.21.0', 'boto >=2.45.0', 'six >=1.12.0',
'urllib3 >= 1.24.3']
INSTALL_REQUIRES = ['requests >=1.0.3', 'boto >=2.45.0', 'six >=1.2.0', 'urllib3 >= 1.0.2', 'inflection >= 0.3.1']
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 053843a

Please sign in to comment.