From 137c75d9042166857cf1ce31c6a482c85ecfb014 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 5 Mar 2024 16:11:53 -0600 Subject: [PATCH] Drop Python 3.6 support; psycopg3 does not support it --- setup.py | 1 - tox.ini | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 9fbfc22..f0fe192 100644 --- a/setup.py +++ b/setup.py @@ -115,7 +115,6 @@ setup( # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', diff --git a/tox.ini b/tox.ini index 52809cf..cd057b9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,8 @@ [tox] -envlist = py{36,37,38,39,310,311} +envlist = py{37,38,39,310,311} [testenv] basepython = - py36: python3.6 py37: python3.7 py38: python3.8 py39: python3.9 -- 2.34.1