@@ -315,7 +315,7 @@ def report(results_dir: str, minifier_ref: str, minifier_sha: str, base_ref: str
315315| Python Version | Valid Corpus Entries | Average Time | Minified Size | Larger than original | Recursion Error | Unstable Minification | Exception |
316316|----------------|---------------------:|-------------:|--------------:|---------------------:|----------------:|----------------------:|----------:|'''
317317
318- for python_version in ['2.7' , '3.3' , '3.4' , '3.5' , '3.6' , '3.7' , '3.8' , '3.9' , '3.10' , '3.11' , '3.12' ]:
318+ for python_version in ['2.7' , '3.3' , '3.4' , '3.5' , '3.6' , '3.7' , '3.8' , '3.9' , '3.10' , '3.11' , '3.12' , '3.13' ]:
319319 try :
320320 summary = result_summary (results_dir , python_version , minifier_sha )
321321 except FileNotFoundError :
@@ -358,11 +358,11 @@ def format_size_change_detail() -> str:
358358 )
359359
360360 if ENHANCED_REPORT :
361- yield from report_larger_than_original (results_dir , ['3.12 ' ], minifier_sha )
362- yield from report_larger_than_base (results_dir , ['3.12 ' ], minifier_sha , base_sha )
363- yield from report_slowest (results_dir , ['3.12 ' ], minifier_sha )
364- yield from report_unstable (results_dir , ['2.7' , '3.3' , '3.4' , '3.5' , '3.6' , '3.7' , '3.8' , '3.9' , '3.10' , '3.11' , '3.12' ], minifier_sha )
365- yield from report_exceptions (results_dir , ['3.6' , '3.7' , '3.8' , '3.9' , '3.10' , '3.11' , '3.12' ], minifier_sha )
361+ yield from report_larger_than_original (results_dir , ['3.13 ' ], minifier_sha )
362+ yield from report_larger_than_base (results_dir , ['3.13 ' ], minifier_sha , base_sha )
363+ yield from report_slowest (results_dir , ['3.13 ' ], minifier_sha )
364+ yield from report_unstable (results_dir , ['2.7' , '3.3' , '3.4' , '3.5' , '3.6' , '3.7' , '3.8' , '3.9' , '3.10' , '3.11' , '3.12' , '3.13' ], minifier_sha )
365+ yield from report_exceptions (results_dir , ['3.6' , '3.7' , '3.8' , '3.9' , '3.10' , '3.11' , '3.12' , '3.13' ], minifier_sha )
366366
367367
368368def main ():
0 commit comments