We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f0562d commit 0ff1cf7Copy full SHA for 0ff1cf7
VERSION
@@ -1 +1 @@
1
-0.2.1
+0.2.3
setup.py
@@ -43,12 +43,6 @@ def _minimal_ext_cmd(cmd):
43
def get_hash():
44
if os.path.exists('.git'):
45
sha = get_git_hash()[:7]
46
- elif os.path.exists(version_file):
47
- try:
48
- from gfpgan.version import __version__
49
- sha = __version__.split('+')[-1]
50
- except ImportError:
51
- raise ImportError('Unable to get git version')
52
else:
53
sha = 'unknown'
54
0 commit comments