Fix: Finally fixing the gevent issues for the tng-sdk-benchmark intergration
[osm/vim-emu.git] / setup.py
index 7cc9d6b..5bab406 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -57,7 +57,10 @@ setup(name='emuvim',
           'ipaddress',
           'simplejson',
           'gevent',
-          'flake8'
+          'flake8',
+          # fixes: https://github.com/pytest-dev/pytest/issues/4770
+          'more-itertools<=5.0.0',
+          'jinja2'
       ],
       zip_safe=False,
       entry_points={
@@ -66,5 +69,5 @@ setup(name='emuvim',
           ],
       },
       setup_requires=['pytest-runner'],
-      tests_require=['pytest'],
+      tests_require=['pytest', 'more-itertools<=5.0.0'],
       )