File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -1693,8 +1693,9 @@ def output_dir(self):
1693
1693
def archive_prefix (self ):
1694
1694
return mx_subst .path_substitutions .substitute (getattr (self , "prefix" , "" ))
1695
1695
1696
- def get_relpath (self , f , outputDir ):
1697
- return super ().get_relpath (f , outputDir ).replace (os .sep , "/" )
1696
+ def getArchivableResults (self , use_relpath = True , single = False ):
1697
+ for f , arcname in super ().getArchivableResults (use_relpath = use_relpath , single = single ):
1698
+ yield f , arcname .replace (os .sep , "/" )
1698
1699
1699
1700
def getResults (self ):
1700
1701
if hasattr (self , "outputFile" ):
Original file line number Diff line number Diff line change 773
773
"\/test\/" ,
774
774
"\/tests\/" ,
775
775
"\/idle_test\/" ,
776
+ "\\ \\ __pycache__\\ \\ " ,
777
+ "\\ \\ test\\ \\ " ,
778
+ "\\ \\ tests\\ \\ " ,
779
+ "\\ \\ idle_test\\ \\ " ,
776
780
],
777
781
"license" : ["PSF-License" ],
778
782
},
You can’t perform that action at this time.
0 commit comments