返回提交历史
Modified
g4f/version.py
+2
-1
XFEstudio/gpt4free
Update version.py
751a9797
代码差异
1 个文件
+2
-1
@@ -79,7 +79,8 @@ class VersionUtils:
79
79
if version:
80
80
return version
81
81
82
# Read from git repository try:
82
# Read from git repository
83
try:
83
84
command = ["git", "describe", "--tags", "--abbrev=0"]
84
85
return check_output(command, text=True, stderr=PIPE).strip()
85
86
except CalledProcessError: