From: Mike Bayer Date: Thu, 6 Aug 2026 14:40:33 +0000 (-0400) Subject: pin asyncmy to 0.2.12 or greater X-Git-Tag: rel_2_0_52~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a46549de6abd77e55b5f5f250ab04aebe4b1f665;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git pin asyncmy to 0.2.12 or greater they seem to have fixed a BIT issue Change-Id: I393fa4423356b94859cca3c282f6bfcfae3a7656 (cherry picked from commit 3ea271cc9653ef9fe12d26f1911aa8d13386cbab) --- diff --git a/setup.cfg b/setup.cfg index 61d82ea5ca..d70416916b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -80,7 +80,7 @@ aioodbc = aioodbc asyncmy = %(asyncio)s - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 + asyncmy>=0.2.12 aiosqlite = %(asyncio)s aiosqlite diff --git a/test/dialect/mysql/test_types.py b/test/dialect/mysql/test_types.py index 2e5033ec57..db2beff4d3 100644 --- a/test/dialect/mysql/test_types.py +++ b/test/dialect/mysql/test_types.py @@ -570,7 +570,7 @@ class TypeRoundTripTest(fixtures.TestBase, AssertsExecutionResults): ([0, 0, 0, 0, i, i, i, i], None), ([0, 0, 0, 0, 0, j, j, j], None), ([0, 0, 0, 0, 0, 0, k, k], None), - ([0, 0, 0, 0, 0, 0, 0, l], None, testing.fails_if("+asyncmy")), + ([0, 0, 0, 0, 0, 0, 0, l], None), argnames="store, expected", ) def test_bit_50_roundtrip(self, connection, bit_table, store, expected): @@ -589,7 +589,7 @@ class TypeRoundTripTest(fixtures.TestBase, AssertsExecutionResults): ([0, 0, 0, 0, i, i, i, i], None), ([0, 0, 0, 0, 0, j, j, j], None), ([0, 0, 0, 0, 0, 0, k, k], None), - ([0, 0, 0, 0, 0, 0, 0, l], None, testing.fails_if("+asyncmy")), + ([0, 0, 0, 0, 0, 0, 0, l], None), argnames="store, expected", ) def test_bit_50_roundtrip_reflected(