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
@ -2,4 +2,8 @@ IVERSION = (0, 11)
|
|||||||
VERSION = ".".join(str(i) for i in IVERSION)
|
VERSION = ".".join(str(i) for i in IVERSION)
|
||||||
MINORVERSION = ".".join(str(i) for i in IVERSION[:2])
|
MINORVERSION = ".".join(str(i) for i in IVERSION[:2])
|
||||||
NAME = "pathod"
|
NAME = "pathod"
|
||||||
NAMEVERSION = NAME + " " + VERSION
|
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,
|
include_package_data=True,
|
||||||
scripts = ["pathod", "pathoc"],
|
scripts = ["pathod", "pathoc"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'netlib>=%s' % version.MINORVERSION,
|
"netlib>=%s, <%s" % (version.MINORVERSION, version.NEXT_MINORVERSION),
|
||||||
# It's INSANE that we have to do this, but...
|
# It's INSANE that we have to do this, but...
|
||||||
# FIXME: Requirement to be removed at next release
|
# FIXME: Requirement to be removed at next release
|
||||||
"pip>=1.5.6",
|
"pip>=1.5.6",
|
||||||
|
Loading…
Reference in New Issue
Block a user