From 3a99e3b0c061d76079c45328844746ed31d65dc6 Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Wed, 5 Apr 2023 09:21:20 -0400 Subject: [PATCH] Drop Python 3.7 The Python 3.7 End of Support is coming 2023-06-27, and various upstream tools, including from this project's perspective `case-utils`, have consequently dropped support for that Python version. References: * https://github.com/casework/CASE-Utilities-Python/pull/99 * https://www.python.org/downloads/ Signed-off-by: Alex Nelson --- .github/workflows/python-package.yml | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 177f8a4..57f126a 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] + python-version: [3.8, 3.9, "3.10", "3.11"] steps: - uses: actions/checkout@v3 diff --git a/setup.cfg b/setup.cfg index 05f8c61..4a09194 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,7 +18,7 @@ install_requires = Pillow rdflib packages = find: -python_requires = >=3.7 +python_requires = >=3.8 scripts = pillow_case/exif_node_maker.py