We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5a40735 + 92bacec commit 929eee0Copy full SHA for 929eee0
README.rst
@@ -59,7 +59,7 @@ How to use
59
60
.. warning::
61
62
- Tested on PostgreSQL versions >= 10. See tests for more details.
+ Tested on PostgreSQL versions >= 14. See tests for more details.
63
64
How does it work
65
----------------
newsfragments/1250.break.rst
@@ -0,0 +1 @@
1
+Support only PostgreSQL version 14 and up.
pytest_postgresql/executor.py
@@ -57,7 +57,7 @@ class PostgreSQLExecutor(TCPExecutor):
57
)
58
VERSION_RE = re.compile(r".* (?P<version>\d+(?:\.\d+)?)")
- MIN_SUPPORTED_VERSION = parse("10")
+ MIN_SUPPORTED_VERSION = parse("14")
def __init__(
self,
0 commit comments