File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 12
12
13
13
class build_py (_build_py ):
14
14
def run (self ):
15
- init = path .join (self .build_lib , 'git_python ' , '__init__.py' )
15
+ init = path .join (self .build_lib , 'git ' , '__init__.py' )
16
16
if path .exists (init ):
17
17
os .unlink (init )
18
18
_build_py .run (self )
@@ -22,13 +22,13 @@ def run(self):
22
22
class sdist (_sdist ):
23
23
def make_release_tree (self , base_dir , files ):
24
24
_sdist .make_release_tree (self , base_dir , files )
25
- orig = path .join ('lib' , 'git_python ' , '__init__.py' )
25
+ orig = path .join ('lib' , 'git ' , '__init__.py' )
26
26
assert path .exists (orig )
27
27
dest = path .join (base_dir , orig )
28
28
if hasattr (os , 'link' ) and path .exists (dest ):
29
29
os .unlink (dest )
30
30
self .copy_file (orig , dest )
31
- _stamp_version (dest )
31
+ # _stamp_version(dest)
32
32
33
33
def _stamp_version (filename ):
34
34
found , out = False , []
You can’t perform that action at this time.
0 commit comments