File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -225,11 +225,13 @@ def git_clone(
225225 repo_url : str
226226 ) -> subprocess .CompletedProcess :
227227 try :
228+ env = os .environ .copy ()
229+ env .update ({"GIT_LFS_SKIP_SMUDGE" : "1" })
228230 result = self .run_subprocess (
229231 command = f"git clone -b { branch_name } { repo_url } " ,
230232 folder = self .work_dir ,
231233 check = True ,
232- env = { "GIT_LFS_SKIP_SMUDGE" : "1" }
234+ env = env
233235 ).stdout .strip ()
234236 except subprocess .CalledProcessError as exc :
235237 raise EnvironmentError (exc .stderr )
Original file line number Diff line number Diff line change 55
66setup (
77 name = 'csghub-sdk' ,
8- version = '0.7.3 ' ,
8+ version = '0.7.4 ' ,
99 author = "opencsg" ,
1010 author_email = "contact@opencsg.com" ,
1111 long_description = long_description ,
You can’t perform that action at this time.
0 commit comments