Skip to content

Commit

Permalink
v0.13.6 - fix click version incompatible (#40)
Browse files Browse the repository at this point in the history
Fix: mitmproxy 4.0.4 has requirement click<7,>=6.2, but you'll have click 7.0 which is incompatible
  • Loading branch information
zhaoye authored Sep 26, 2018
1 parent 38749a6 commit 114b745
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lyrebird/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
IVERSION = (0, 13, 5)
IVERSION = (0, 13, 6)
VERSION = ".".join(str(i) for i in IVERSION)
LYREBIRD = "Lyrebird " + VERSION
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
]
},
install_requires=[
'flask',
'mitmproxy==4.0.4',
'flask',
'requests',
'fire',
'colorama',
Expand Down

0 comments on commit 114b745

Please sign in to comment.