Skip to content

Commit

Permalink
Fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tangb committed Apr 15, 2019
1 parent 0cb40d9 commit 8031e75
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cleepcli/config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

VERSION = '1.1.0'
VERSION = '1.1.1'

PRIVATE_REPO = True
REPO_PRIVATE_URL = 'https://[email protected]/tangb/raspiot.git'
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Click==7.0
watchdog==0.9.0
requests==2.21.0
coverage==4.5.3
Click>=7.0,<8.0
watchdog>=0.9.0,<1.0.0
requests>=2.21.0,<3.0.0
coverage>=4.5.3,<5.0.0

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
url = 'http://www.github.com/tangb/cleep-cli/',
packages = ['cleepcli'],
include_package_data = True,
install_requires = ['Click>=7.0,<8.0', 'watchdog>=0.9.0,<1.0.0', 'requests>=2.21.0,<3.0.0', 'coverage>=4.5.3,<4.4.0'],
install_requires = ['Click>=7.0,<8.0', 'watchdog>=0.9.0,<1.0.0', 'requests>=2.21.0,<3.0.0', 'coverage>=4.5.3,<5.0.0'],
scripts = ['bin/cleep-cli']
)

0 comments on commit 8031e75

Please sign in to comment.