mirror of
https://github.com/serengil/deepface.git
synced 2025-06-06 11:35:21 +00:00
10 lines
227 B
Python
10 lines
227 B
Python
import json
|
|
from deepface import DeepFace
|
|
|
|
|
|
def test_version():
|
|
with open("../package_info.json", "r", encoding="utf-8") as f:
|
|
package_info = json.load(f)
|
|
|
|
assert DeepFace.__version__ == package_info["version"]
|