Commit 23f874d6 authored by Davis King's avatar Davis King

Fixed pytest not working with python 2.7. So turning travis tests back on for…

Fixed pytest not working with python 2.7.  So turning travis tests back on for that version of python.
parent 23c140d1
...@@ -91,7 +91,7 @@ matrix: ...@@ -91,7 +91,7 @@ matrix:
################### ###################
- language: python - language: python
python: 3.5 python: 2.7
env: env:
- VARIANT=python-api - VARIANT=python-api
script: script:
...@@ -99,7 +99,7 @@ matrix: ...@@ -99,7 +99,7 @@ matrix:
################### ###################
- language: python - language: python
python: 3.7 python: 3.5
env: env:
- VARIANT=python-api - VARIANT=python-api
script: script:
......
...@@ -230,7 +230,8 @@ setup( ...@@ -230,7 +230,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