From 322f15470442983c7285fcabdd08d7d6d96e14c8 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 2 Dec 2022 14:27:27 -0700 Subject: [PATCH] Drop Python 3.6 as a supported version It was EOLed a year ago. Signed-off-by: Zack Cerza --- .github/workflows/ci.yml | 2 +- .github/workflows/dependencies.yml | 2 +- setup.cfg | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c93bb760dd..f3750d55ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python: ['3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 - name: Setup Python diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 667bf6d7b1..a0bd3b3818 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python: ['3.7', '3.8', '3.9', '3.10'] steps: - name: Set up Python uses: actions/setup-python@v3 diff --git a/setup.cfg b/setup.cfg index f5de27bf92..8472268d3e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,7 +13,6 @@ classifiers = Operating System :: POSIX :: Linux Programming Language :: Python :: 3 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 -- 2.39.5