Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ How to use

.. warning::

Tested on PostgreSQL versions >= 10. See tests for more details.
Tested on PostgreSQL versions >= 14. See tests for more details.

How does it work
----------------
Expand Down
1 change: 1 addition & 0 deletions newsfragments/1250.break.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Support only PostgreSQL version 14 and up.
2 changes: 1 addition & 1 deletion pytest_postgresql/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class PostgreSQLExecutor(TCPExecutor):
)

VERSION_RE = re.compile(r".* (?P<version>\d+(?:\.\d+)?)")
MIN_SUPPORTED_VERSION = parse("10")
MIN_SUPPORTED_VERSION = parse("14")

def __init__(
self,
Expand Down
Loading