Merge pull request #37 from glucauze/v1.2.1

enforce package install, less efficient but more robust
pull/49/head
Tran Xen 2023-08-07 12:22:05 +02:00 committed by GitHub
commit bfb4578c8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ def check_install() -> None:
required_version = parse(package.split(">=")[1])
return installed_version >= required_version
else:
return True
return launch.is_installed(package_name)
print("Checking faceswaplab requirements")
with open(req_file) as file: