From e88264e3c1a0937a0d076de119b7c6017ac48416 Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Fri, 2 Dec 2022 21:58:33 -0500 Subject: [PATCH 1/2] Remove Python 3.6 from tests --- azure-pipelines.yml | 2 -- tox.ini | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 82decb5d..fdf6d85a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -13,8 +13,6 @@ jobs: vmImage: 'Ubuntu-latest' strategy: matrix: - Python36: - python.version: '3.6' Python37: python.version: '3.7' Python38: diff --git a/tox.ini b/tox.ini index 9ccebaf4..2c125d84 100644 --- a/tox.ini +++ b/tox.ini @@ -4,13 +4,11 @@ envlist = clean, check, - {py35, py36, py37}, + {py37}, report [testenv] basepython = - py35: {env:TOXPYTHON:python3.5} - py36: {env:TOXPYTHON:python3.6} py37: {env:TOXPYTHON:python3.7} {clean,check,report,codecov}: {env:TOXPYTHON:python3} setenv = From 7b998e6ff5008d563ba13571c69d124557d0c65c Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Fri, 2 Dec 2022 21:59:17 -0500 Subject: [PATCH 2/2] Remove Python 3.6 from classifiers --- setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.py b/setup.py index 04cdceb4..9c1fca6f 100644 --- a/setup.py +++ b/setup.py @@ -74,9 +74,6 @@ setup( 'Operating System :: Unix', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9',