summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-12-14 22:20:08 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2021-12-14 22:20:08 -0500
commita91df497d8d78292b0b5e7f79656b3f82d7de4f7 (patch)
tree464c35925e923ae02aef0ec46fbfac137b4018e6
parent009747e146008ce695f33aee5ffb12a14f3a7e46 (diff)
downloadsqlalchemy-a91df497d8d78292b0b5e7f79656b3f82d7de4f7.tar.gz
bump psycopg to 3.0.7
revert the change from 893b4e03921eb1a86e202988bf247251d0d2fae9 and set lower bound for psycopg to 3.0.7 Change-Id: If506c6c3190c4d40683a10ddaea32a417e9c6ed4 References: https://github.com/psycopg/psycopg/issues/178
-rw-r--r--setup.cfg2
-rw-r--r--test/orm/test_unitofworkv2.py1
2 files changed, 1 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index 92c0006c0..1ef349a60 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -67,7 +67,7 @@ postgresql_asyncpg =
asyncpg;python_version>="3"
postgresql_psycopg2binary = psycopg2-binary
postgresql_psycopg2cffi = psycopg2cffi
-postgresql_psycopg = psycopg>=3.0.2
+postgresql_psycopg = psycopg>=3.0.7
pymysql =
pymysql;python_version>="3"
pymysql<1;python_version<"3"
diff --git a/test/orm/test_unitofworkv2.py b/test/orm/test_unitofworkv2.py
index 0e89fa62d..c93cc2edf 100644
--- a/test/orm/test_unitofworkv2.py
+++ b/test/orm/test_unitofworkv2.py
@@ -1928,7 +1928,6 @@ class BasicStaleChecksTest(fixtures.MappedTest):
)
@testing.requires.sane_multi_rowcount
- @testing.skip_if("+psycopg", "unknown regression as of psycopg 3.0.6")
def test_delete_multi_missing_warning(self):
Parent, Child = self._fixture()
sess = fixture_session()