Commit 22402e99 authored by Davis King's avatar Davis King

Revert "Fixed pytest broken dependencies"

Apparently pytest is still sort of busted.

This reverts commit 5e63d015.
parent e0a24e39
...@@ -232,7 +232,8 @@ setup( ...@@ -232,7 +232,8 @@ setup(
ext_modules=[CMakeExtension('dlib','tools/python')], ext_modules=[CMakeExtension('dlib','tools/python')],
cmdclass=dict(build_ext=CMakeBuild, test=PyTest), cmdclass=dict(build_ext=CMakeBuild, test=PyTest),
zip_safe=False, 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. #install_requires=['cmake'], # removed because the pip cmake package is busted, maybe someday it will be usable.
packages=['dlib'], packages=['dlib'],
keywords=['dlib', 'Computer Vision', 'Machine Learning'], keywords=['dlib', 'Computer Vision', 'Machine Learning'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment