mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-30 03:14:22 +00:00
be more explicit about requirements
This commit is contained in:
parent
396fb1943a
commit
60584387ff
@ -5,3 +5,7 @@ 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 = "netlib"
|
NAME = "netlib"
|
||||||
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
@ -47,7 +47,7 @@ setup(
|
|||||||
"nose>=1.3.0",
|
"nose>=1.3.0",
|
||||||
"nose-cov>=1.6",
|
"nose-cov>=1.6",
|
||||||
"coveralls>=0.4.1",
|
"coveralls>=0.4.1",
|
||||||
"pathod>=0.%s" % version.MINORVERSION
|
"pathod>=%s, <%s" % (version.MINORVERSION, version.NEXT_MINORVERSION)
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
)
|
)
|
@ -1,5 +0,0 @@
|
|||||||
mock>=1.0.1
|
|
||||||
nose>=1.3.0
|
|
||||||
nose-cov>=1.6
|
|
||||||
coveralls>=0.4.1
|
|
||||||
pathod>=0.11
|
|
Loading…
Reference in New Issue
Block a user