Skip to content

Commit

Permalink
ping versions of requirements in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lins05 committed Feb 21, 2015
1 parent f8821cc commit 7535b5b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
7 changes: 3 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
backports.ssl-match-hostname==3.4.0.2
requests==2.4.0
websocket-client==0.22.0
requests>=2.4.0
websocket-client>=0.22.0
importlib>=1.0.3
slacker==0.5.5
slacker>=0.5.5
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
__version__ = open(join(dirname(__file__), 'slackbot/VERSION')).read().strip()

install_requires = (
'requests'
'websocket-client',
'importlib',
'slacker',
'requests>=2.4.0',
'websocket-client>=0.22.0',
'importlib>=1.0.3',
'slacker>=0.5.5',
)

excludes = (
Expand Down

0 comments on commit 7535b5b

Please sign in to comment.