From bd822d0400585bfe70b2f5599fb42e5e9e4dd7ed Mon Sep 17 00:00:00 2001 From: Laurence Billingham Date: Fri, 25 Jul 2025 14:57:22 +0100 Subject: [PATCH] chore: :arrow_up: stop testing on EoL python --- .github/workflows/ci.yml | 2 +- tox.ini | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f71b698f1..68484f8ae4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: name: test (Python ${{ matrix.python-version }}) strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 - name: Set up Python diff --git a/tox.ini b/tox.ini index ab2c294832..e474ba5211 100644 --- a/tox.ini +++ b/tox.ini @@ -1,13 +1,11 @@ [tox] envlist = lint, - py{36,37,38,39,310}, + py{38,39,310}, docs [gh-actions] python = - 3.6: py36 - 3.7: py37 3.8: py38, docs, lint 3.9: py39 3.10: py310