From 951ff10ab8a3088872bac07897098445cecdd33d Mon Sep 17 00:00:00 2001 From: Chris PeBenito Date: Wed, 6 Dec 2023 10:31:15 -0500 Subject: [PATCH] Update CI Python versions. 3.6-3.8 no longer supported. Signed-off-by: Chris PeBenito --- .github/workflows/tests.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 01f8c5e8..719ee749 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,17 +27,15 @@ jobs: matrix: build-opts: - - {python: '3.6', tox: python3.6} - - {python: '3.7', tox: python3.7} - - {python: '3.8', tox: python3.8} - {python: '3.9', tox: python3.9} - {python: '3.10', tox: python3.10} - {python: '3.11', tox: python3.11} - - {python: '3.6', tox: pep8} - - {python: '3.6', tox: lint} - - {python: '3.6', tox: mypy} - - {python: '3.6', tox: coverage} - - {python: '3.6', tox: install} + - {python: '3.12', tox: python3.12} + - {python: '3.9', tox: pep8} + - {python: '3.9', tox: lint} + - {python: '3.9', tox: mypy} + - {python: '3.9', tox: coverage} + - {python: '3.9', tox: install} steps: - uses: actions/checkout@v3