be more explicit about requirements

This commit is contained in:
Maximilian Hils 2014-11-11 12:26:20 +01:00
parent 396fb1943a
commit 60584387ff
3 changed files with 5 additions and 6 deletions

View File

@ -5,3 +5,7 @@ VERSION = ".".join(str(i) for i in IVERSION)
MINORVERSION = ".".join(str(i) for i in IVERSION[:2])
NAME = "netlib"
NAMEVERSION = NAME + " " + VERSION
NEXT_MINORVERSION = list(IVERSION)
NEXT_MINORVERSION[1] += 1
NEXT_MINORVERSION = ".".join(str(i) for i in NEXT_MINORVERSION[:2])

View File

@ -47,7 +47,7 @@ setup(
"nose>=1.3.0",
"nose-cov>=1.6",
"coveralls>=0.4.1",
"pathod>=0.%s" % version.MINORVERSION
"pathod>=%s, <%s" % (version.MINORVERSION, version.NEXT_MINORVERSION)
]
}
)

View File

@ -1,5 +0,0 @@
mock>=1.0.1
nose>=1.3.0
nose-cov>=1.6
coveralls>=0.4.1
pathod>=0.11