From: Karl O. Pinc Date: Tue, 5 Mar 2024 22:11:54 +0000 (-0600) Subject: Drop Python 3.6 support; psycopg3 does not support it X-Git-Url: https://papio.biology.duke.edu/gitweb/?a=commitdiff_plain;h=424b2fa56f9fbb2ace0d967edaf863faa793e1ca;p=pgwui_develop Drop Python 3.6 support; psycopg3 does not support it --- diff --git a/setup.py b/setup.py index bc80165..fecd198 100644 --- a/setup.py +++ b/setup.py @@ -111,7 +111,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 8ec249e..aca3ac0 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