]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
bump psycopg to 3.0.7
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 15 Dec 2021 03:20:08 +0000 (22:20 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 15 Dec 2021 03:20:08 +0000 (22:20 -0500)
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
test/orm/test_unitofworkv2.py

index 92c0006c0222839c3ef1a94b3a42903b715e8099..1ef349a605c1b901d64a2fabd7770b2558c955c3 100644 (file)
--- 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"
index 0e89fa62df82aabbc8bc0c5c9ebf2d600e3e96a9..c93cc2edfc33502bbc4206a4568b8fc9fb79dda2 100644 (file)
@@ -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()