From 04e890bef59d567c67fd5cf3fc8c8ea2983f3dd0 Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Mon, 19 Dec 2022 12:13:27 -0500 Subject: [PATCH] Update Python support to reflect coming 3.7 EOL Python 3.7 end of support is 2023-06-27. Some projects `case-utils` includes in its dependencies, most recently NumPy, are ending their support for Python 3.7 ahead of this EOL. Rather than hold `case-utils` back for another 6 months, this patch removes 3.7 from the test base, and will encourage downstream adopters to do the same, so updates for imported packages continue to be retrieved. References: * https://www.python.org/downloads/ --- .github/workflows/cicd.yml | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index ded9ba3..9f2efeb 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -31,7 +31,7 @@ jobs: strategy: matrix: python-version: - - '3.7' + - '3.8' - '3.11' steps: diff --git a/setup.cfg b/setup.cfg index fa9b6e5..7c0b0d9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -25,7 +25,7 @@ install_requires = requests tabulate packages = find: -python_requires = >=3.7 +python_requires = >=3.8 [options.entry_points] console_scripts =