mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-27 02:24:18 +00:00
Merge branch 'master' of ssh.github.com:mitmproxy/pathod
This commit is contained in:
commit
63d2403558
@ -3,3 +3,7 @@ VERSION = ".".join(str(i) for i in IVERSION)
|
||||
MINORVERSION = ".".join(str(i) for i in IVERSION[:2])
|
||||
NAME = "pathod"
|
||||
NAMEVERSION = NAME + " " + VERSION
|
||||
|
||||
NEXT_MINORVERSION = list(IVERSION)
|
||||
NEXT_MINORVERSION[1] += 1
|
||||
NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])
|
2
setup.py
2
setup.py
@ -37,7 +37,7 @@ setup(
|
||||
include_package_data=True,
|
||||
scripts = ["pathod", "pathoc"],
|
||||
install_requires=[
|
||||
'netlib>=%s' % version.MINORVERSION,
|
||||
"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",
|
||||
|
Loading…
Reference in New Issue
Block a user