Fix Python 3.10 and PostgreSQL 14 compatibility notes

This commit is contained in:
Daniele Varrazzo 2021-11-05 18:37:58 +01:00
parent 8e186dd7e9
commit 1454b14ae0
2 changed files with 4 additions and 3 deletions

View File

@ -131,8 +131,8 @@ The current `!psycopg2` implementation supports:
..
NOTE: keep consistent with setup.py and the /features/ page.
- Python versions from 3.6 to 3.9
- PostgreSQL server versions from 7.4 to 13
- Python versions from 3.6 to 3.10
- PostgreSQL server versions from 7.4 to 14
- PostgreSQL client library version from 9.1

View File

@ -44,7 +44,7 @@ except ImportError:
# Take a look at https://www.python.org/dev/peps/pep-0440/
# for a consistent versioning pattern.
PSYCOPG_VERSION = '2.9.1'
PSYCOPG_VERSION = '2.9.2.dev0'
# note: if you are changing the list of supported Python version please fix
@ -59,6 +59,7 @@ 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 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: C