mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-25 10:23:43 +03:00
Fix Python 3.10 and PostgreSQL 14 compatibility notes
This commit is contained in:
parent
8e186dd7e9
commit
1454b14ae0
|
@ -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
|
||||
|
||||
|
||||
|
|
3
setup.py
3
setup.py
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user