Skip to content

Commit

Permalink
{rdbms-connect} Add support for Python 3.11 (#7608)
Browse files Browse the repository at this point in the history
  • Loading branch information
ambrahma authored May 16, 2024
1 parent a4877f5 commit a8a793e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/rdbms-connect/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 5 additions & 2 deletions src/rdbms-connect/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'
]
Expand Down

0 comments on commit a8a793e

Please sign in to comment.