Skip to content

Commit

Permalink
Resolves #366, non-pinned versions in setup.py:install_requires
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Nephin <dnephin@gmail.com>
  • Loading branch information
Daniel Nephin committed Jul 30, 2014
1 parent 847ec5b commit c0450f7
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,16 @@ def find_version(*file_paths):
return version_match.group(1)
raise RuntimeError("Unable to find version string.")

with open('requirements.txt') as f:
install_requires = f.read().splitlines()

install_requires = [
'docopt >= 0.6.1, < 0.7',
'PyYAML >= 3.10, < 4',
'requests >= 2.2.1, < 3',
'texttable >= 0.8.1, < 0.9',
'websocket-client >= 0.11.0, < 0.12',
'dockerpty >= 0.2.3, < 0.3',
]


with open('requirements-dev.txt') as f:
tests_require = f.read().splitlines()
Expand Down

0 comments on commit c0450f7

Please sign in to comment.