From: Mike Bayer Date: Wed, 15 Dec 2021 03:20:08 +0000 (-0500) Subject: bump psycopg to 3.0.7 X-Git-Tag: rel_2_0_0b1~596 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a91df497d8d78292b0b5e7f79656b3f82d7de4f7;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 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 --- 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()