From a91df497d8d78292b0b5e7f79656b3f82d7de4f7 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 14 Dec 2021 22:20:08 -0500 Subject: [PATCH] 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 --- setup.cfg | 2 +- test/orm/test_unitofworkv2.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 92c0006c02..1ef349a605 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 0e89fa62df..c93cc2edfc 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() -- 2.47.2