diff --git a/src/rdbms-connect/HISTORY.rst b/src/rdbms-connect/HISTORY.rst index e325342d697..6d90d6bd485 100644 --- a/src/rdbms-connect/HISTORY.rst +++ b/src/rdbms-connect/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +1.0.6 +++++++ ++ Add support for Python versions 3.9, 3.10 and 3.11 for dependency of psycopg2 + 1.0.5 ++++++ + Use compatible release for `setproctitle` to support Python 3.11 diff --git a/src/rdbms-connect/setup.py b/src/rdbms-connect/setup.py index 5af7cd25278..f35c5201163 100644 --- a/src/rdbms-connect/setup.py +++ b/src/rdbms-connect/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '1.0.5' +VERSION = '1.0.6' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers @@ -29,12 +29,15 @@ 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", 'License :: OSI Approved :: MIT License', ] DEPENDENCIES = [ 'setproctitle~=1.3.3', - 'psycopg2==2.9.3', + 'psycopg2~=2.9.3', 'mycli~=1.27.0', 'pgcli==4.0.1' ]