From 02234d1a7817df6628fc3d177388815a847bc0dd Mon Sep 17 00:00:00 2001 From: Brian Rogers Date: Fri, 15 Dec 2023 15:44:38 +0000 Subject: [PATCH] remove python 3.6 --- .github/workflows/test.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e6e71b0..7e46ba7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.7, 3.8, 3.9] # Steps represent a sequence of tasks that will be executed as part of the job steps: diff --git a/tox.ini b/tox.ini index 6dd1052..0bb7914 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = clean, py36, py37, py38, py39, pylint, flake8, pydocstyle, stats +envlist = clean, py37, py38, py39, pylint, flake8, pydocstyle, stats ignore_basepython_conflict = true [testenv:clean]