diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-12-14 22:20:08 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-12-14 22:20:08 -0500 |
| commit | a91df497d8d78292b0b5e7f79656b3f82d7de4f7 (patch) | |
| tree | 464c35925e923ae02aef0ec46fbfac137b4018e6 | |
| parent | 009747e146008ce695f33aee5ffb12a14f3a7e46 (diff) | |
| download | sqlalchemy-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.cfg | 2 | ||||
| -rw-r--r-- | test/orm/test_unitofworkv2.py | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -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() |
