diff --git a/update.py b/update.py index c2c832cce..b7c99ff59 100644 --- a/update.py +++ b/update.py @@ -409,22 +409,25 @@ def get_package_notes(fedora_version): f37 = CoprResults(u'https://copr.fedorainfracloud.org', '@fedora-llvm-team', 'clang-built-f37') f37_clang16 = CoprResults(u'https://copr.fedorainfracloud.org', 'tstellar', 'fedora-37-clang-16') f38 = CoprResults(u'https://copr.fedorainfracloud.org', '@fedora-llvm-team', 'clang-built-f38') +f39 = CoprResults(u'https://copr.fedorainfracloud.org', '@fedora-llvm-team', 'clang-built-f39') comparisons = [ (KojiResults('f36'), f36), (KojiResults('f37'), f37), (KojiResults('f38'), f38), +(KojiResults('f39'), f39), (f35, f36), (f36, f37), (f37, f38), (f37, f37_clang16) +(f38, f39) ] # Assume copr-reporter is in the current directory if len(tags) !=1 and os.path.isdir('./copr-reporter'): - pages = ['f36', 'f37', 'f38', 'f38-llvm17-20230601'] + pages = ['f36', 'f37', 'f38', 'f38-llvm17-20230601', 'f39'] print("COPR REPORTER", pages) old_cwd = os.getcwd()