From 7b071b944b161790cdc7453a6358cdb37c5baf16 Mon Sep 17 00:00:00 2001 From: Robert French Date: Wed, 15 May 2024 09:31:33 -0700 Subject: [PATCH 1/3] Update pyproject.toml --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7281253..40acc14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "rms-pdslogger" dynamic = ["version"] description = "Extension to the Python logging module" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "numpy", "pyparsing", @@ -25,7 +25,6 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities", "License :: OSI Approved :: Apache Software License", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", From f27529ffdaef74546ab9a539bb60eec826eb4f29 Mon Sep 17 00:00:00 2001 From: Robert French Date: Wed, 15 May 2024 09:31:51 -0700 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index deb7257..b4f63ce 100644 --- a/README.md +++ b/README.md @@ -25,4 +25,4 @@ PDS Ring-Moon Systems Node, SETI Institute -Supported versions: Python >= 3.7 +Supported versions: Python >= 3.8 From 86b8b2b13d9d2693154d94957a748077e09a85e0 Mon Sep 17 00:00:00 2001 From: Robert French Date: Wed, 15 May 2024 09:32:33 -0700 Subject: [PATCH 3/3] Update run-tests.yml --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 31c56a5..0821871 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ] + python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ] fail-fast: false steps: - name: Checkout