diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-02-05 23:42:37 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-02-05 23:42:37 +0100 |
commit | 2b88d7db002831be448885ec60be351307e6140c (patch) | |
tree | 5cddb824d6286b1b4038f1120bc5cdb105bcc4d5 /setup.py | |
parent | 5f159da4888f1b287b3688fe488946881d6a60ca (diff) | |
download | mitmproxy-2b88d7db002831be448885ec60be351307e6140c.tar.gz mitmproxy-2b88d7db002831be448885ec60be351307e6140c.tar.bz2 mitmproxy-2b88d7db002831be448885ec60be351307e6140c.zip |
update dependencies
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 16 |
1 files changed, 7 insertions, 9 deletions
@@ -46,20 +46,18 @@ setup( }, install_requires=[ "netlib>=%s, <%s" % (version.MINORVERSION, version.NEXT_MINORVERSION), - # It's INSANE that we have to do this, but... - # FIXME: Requirement to be removed at next release - "pip>=1.5.6", - "requests>=2.8.1, <2.9", + "requests>=2.9.1, <2.10", "Flask>=0.10.1, <0.11", - "pyparsing>=2.0.5, <2.1" + "pyparsing>=2.0.7, <2.1" ], extras_require={ 'dev': [ - "mock>=1.0.1", + "mock>=1.3.0, <1.4", "pytest>=2.8.0", - "pytest-xdist>=1.13.1", - "pytest-cov>=2.1.0", - "coveralls>=0.4.1" + "pytest-xdist>=1.14, <1.15", + "pytest-cov>=2.2.1, <2.3", + "pytest-timeout>=1.0.0, <1.1", + "coveralls>=1.1, <1.2" ] } ) |