From 44dcac7a714e6377501a10b403ff63d43a846481 Mon Sep 17 00:00:00 2001 From: Beau Harrison Date: Mon, 6 Jan 2025 14:48:32 -0600 Subject: [PATCH 1/3] Update LICENSE for FermiForward. This closes #81 --- LICENSE | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 6ad50d5..5590929 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,13 @@ MIT License -Copyright (c) 2022-present Fermi Research Alliance LLC (FRA) +Copyright (c) 2021-2024 Fermi Research Alliance LLC (FRA), All rights reserved +Copyright (c) 2025-present Fermi Forward Discovery Group, LLC, All rights reserved + +This software was produced under U.S. Government contract 89243024CSC000002 for +Fermi National Accelerator Laboratory (Fermilab). Forward Discovery Group, LLC +manages and operates the Fermi National Accelerator Laboratory with the United +States Department of Energy. The U.S. Government has rights to use, reproduce, +and distribute this software. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From d61d38943596f0561be761d588030738e5bbf19c Mon Sep 17 00:00:00 2001 From: Beau Harrison Date: Tue, 19 Aug 2025 11:12:06 -0500 Subject: [PATCH 2/3] Remove support for Python 3.7 Add support for modern versions and include Alma 9's Python version. --- .github/workflows/python-package.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 9726389..dc99afe 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -14,12 +14,13 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] os: ["ubuntu-latest"] # This weird hack allows us to use the matrix notation # but do a special run for the legacy Python and OS. + # This is the version bundled in AlmaLinux release 9.6 include: - - python-version: "3.6.8" + - python-version: "3.9.21" os: "ubuntu-20.04" runs-on: ${{ matrix.os }} From 159fe191c2d33d752b6731230468d2e7983e62fa Mon Sep 17 00:00:00 2001 From: Beau Harrison Date: Tue, 19 Aug 2025 11:41:51 -0500 Subject: [PATCH 3/3] ubuntu-20.04 to ubuntu-lastest Not sure why this job never starts. The docs say this is supported. --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index dc99afe..0ea1b57 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -21,7 +21,7 @@ jobs: # This is the version bundled in AlmaLinux release 9.6 include: - python-version: "3.9.21" - os: "ubuntu-20.04" + os: "ubuntu-latest" runs-on: ${{ matrix.os }}