Revert "Fixed pytest broken dependencies"

Apparently pytest is still sort of busted.

This reverts commit 5e63d01544.
This commit is contained in:
Davis King 2019-06-02 09:34:40 -04:00
parent e0a24e39f2
commit 22402e99a0

View File

@ -232,7 +232,8 @@ setup(
ext_modules=[CMakeExtension('dlib','tools/python')],
cmdclass=dict(build_ext=CMakeBuild, test=PyTest),
zip_safe=False,
tests_require=['pytest==3.8'],
# We need an older more-itertools version because v6 broke pytest (for everyone, not just dlib)
tests_require=['pytest==3.8', 'more-itertools<6.0.0'],
#install_requires=['cmake'], # removed because the pip cmake package is busted, maybe someday it will be usable.
packages=['dlib'],
keywords=['dlib', 'Computer Vision', 'Machine Learning'],