From d1d4d0af2314715d7ad2ef8a49a620e2c61ef1b3 Mon Sep 17 00:00:00 2001 From: dmig Date: Sun, 9 Dec 2018 14:28:16 +0700 Subject: [PATCH] remove last face_recognition references --- .travis.yml | 4 ++-- debian/prerm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e3eb3ce..531897f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,8 +10,8 @@ script: # Confirm the cv2 module has been installed correctly - sudo /usr/bin/env python3 -c "import cv2; print(cv2.__version__);" - # Confirm the face_recognition module has been installed correctly - - sudo /usr/bin/env python3 -c "import face_recognition; print(face_recognition.__version__);" + # Confirm the dlib module has been installed correctly + - sudo /usr/bin/env python3 -c "import dlib; print(dlib.__version__);" # Check if the username passthough works correctly with sudo - 'howdy | ack-grep --passthru --color "current active user: travis"' diff --git a/debian/prerm b/debian/prerm index 958c37e..a4537f0 100755 --- a/debian/prerm +++ b/debian/prerm @@ -38,7 +38,7 @@ except Exception: # This error is normal pass -# Remove face_recognition and dlib +# Remove dlib subprocess.call(['pip3', 'uninstall', 'dlib', '-y', '--no-cache-dir']) # Print a tearbending message