Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
22402e99
Commit
22402e99
authored
Jun 02, 2019
by
Davis King
Browse files
Revert "Fixed pytest broken dependencies"
Apparently pytest is still sort of busted. This reverts commit
5e63d015
.
parent
e0a24e39
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
setup.py
setup.py
+2
-1
No files found.
setup.py
View file @
22402e99
...
@@ -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'
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment