From 072e96e8f5be3c0c0793b6df902463723e82843b Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Mon, 28 Aug 2023 18:30:08 -0400 Subject: [PATCH 1/2] Update Python support to reflect dependency update Python 3.8 end of support is in October of 2024. However, some projects `case-utils` includes in its dependencies, most recently NumPy, are ending their support for Python 3.8 ahead of this EOL. This patch removes 3.8 from the test base, so updates for imported packages continue to be retrieved retrieved. References: * https://github.com/casework/CASE-Utilities-Python/issues/127 Signed-off-by: Alex Nelson --- .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 3845a6e..34bbcf7 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -36,7 +36,7 @@ jobs: strategy: matrix: python-version: - - '3.8' + - '3.9' - '3.11' steps: diff --git a/setup.cfg b/setup.cfg index 7420867..826c63f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -25,7 +25,7 @@ install_requires = requests tabulate packages = find: -python_requires = >=3.8 +python_requires = >=3.9 [options.entry_points] console_scripts = From 37c132331fe8702b51f915245204a55e015d53fb Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Tue, 29 Aug 2023 12:58:07 -0400 Subject: [PATCH 2/2] Bump version Signed-off-by: Alex Nelson --- case_utils/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/case_utils/__init__.py b/case_utils/__init__.py index c98638f..ee0b8df 100644 --- a/case_utils/__init__.py +++ b/case_utils/__init__.py @@ -14,6 +14,6 @@ # # We would appreciate acknowledgement if the software is used. -__version__ = "0.12.0" +__version__ = "0.13.0" from . import local_uuid # noqa: F401