From 35d902c1f4cd90be1687d8fcb45cae14491b449c Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Fri, 6 Oct 2023 13:53:35 -0700 Subject: [PATCH] Drop python 3.7 and earlier support --- .github/workflows/pr-ci.yaml | 2 +- setup.py | 2 -- tests/test_project.py | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/pr-ci.yaml b/.github/workflows/pr-ci.yaml index c386a770..03f5af1f 100644 --- a/.github/workflows/pr-ci.yaml +++ b/.github/workflows/pr-ci.yaml @@ -10,7 +10,7 @@ jobs: AWS_DEFAULT_REGION: us-east-1 strategy: matrix: - python: [ 3.7, 3.8, 3.9, "3.10" ] + python: [ 3.8, 3.9, "3.10" ] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: diff --git a/setup.py b/setup.py index 505c8dd5..2950663a 100644 --- a/setup.py +++ b/setup.py @@ -70,8 +70,6 @@ def find_version(*file_paths): "Topic :: Software Development :: Code Generators", "Operating System :: OS Independent", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/tests/test_project.py b/tests/test_project.py index 1dac143a..d9337ca5 100644 --- a/tests/test_project.py +++ b/tests/test_project.py @@ -59,7 +59,6 @@ "java8", "java11", "go1.x", - "python3.7", "python3.8", "python3.9", "dotnetcore2.1",