From 4f0562df64fc780a5faec1e9feeb6d2636a18ffd Mon Sep 17 00:00:00 2001 From: Xintao Date: Fri, 22 Oct 2021 16:11:17 +0800 Subject: [PATCH] fix setup bug --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2a72f8f6..9c8cd7f7 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def get_hash(): sha = get_git_hash()[:7] elif os.path.exists(version_file): try: - from facexlib.version import __version__ + from gfpgan.version import __version__ sha = __version__.split('+')[-1] except ImportError: raise ImportError('Unable to get git version')