add munkres to requirements.txt to test varLib.interpolatable

This commit is contained in:
Cosimo Lupo 2017-03-07 11:24:16 +00:00
parent 2212acc019
commit cc08ab1050
No known key found for this signature in database
GPG Key ID: B61AAAD0B53A6419
4 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,5 @@
brotli==0.5.2 brotli==0.5.2
unicodedata2==9.0.0.post4; python_version < '3.6' and platform_python_implementation != "PyPy" unicodedata2==9.0.0.post4; python_version < '3.6' and platform_python_implementation != "PyPy"
# TODO(anthrotype): update munkres to 1.0.9 once available:
# https://github.com/bmc/munkres/issues/21
munkres==1.0.8

View File

@ -326,7 +326,6 @@ setup(
setup_requires=pytest_runner + wheel + bumpversion, setup_requires=pytest_runner + wheel + bumpversion,
tests_require=[ tests_require=[
'pytest>=3.0', 'pytest>=3.0',
'munkres',
], ],
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [

View File

@ -1 +0,0 @@
munkres

View File

@ -11,7 +11,6 @@ basepython =
deps = deps =
cov: coverage>=4.3 cov: coverage>=4.3
pytest pytest
munkres
-rrequirements.txt -rrequirements.txt
install_command = install_command =
pip install -v {opts} {packages} pip install -v {opts} {packages}