Skip to content

Commit

Permalink
Trying to keep requirements to a single point of truth (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
attzonko authored Nov 5, 2018
1 parent a9fac26 commit 58a4226
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
websocket-client==0.35.0
six==1.10.0
requests==2.9.1
Sphinx==1.3.3
schedule==0.5.0
websocket-client>=0.35.0
six>=1.10.0
requests>=2.20.0
Sphinx>=1.3.3
schedule>=0.5.0
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,7 @@

from mmpy_bot import get_version

install_requires = (
'websocket-client>=0.22.0',
'six>=1.10.0',
'requests>=2.4.0',
'schedule>=0.5.0',
)
install_requires = open('requirements.txt').read().splitlines()

excludes = (
'*test*',
Expand Down

0 comments on commit 58a4226

Please sign in to comment.