]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
pin asyncmy to 0.2.12 or greater
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 6 Aug 2026 14:40:33 +0000 (10:40 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 6 Aug 2026 14:41:35 +0000 (10:41 -0400)
they seem to have fixed a BIT issue

Change-Id: I393fa4423356b94859cca3c282f6bfcfae3a7656
(cherry picked from commit 3ea271cc9653ef9fe12d26f1911aa8d13386cbab)

setup.cfg
test/dialect/mysql/test_types.py

index 61d82ea5ca6202f97ec4d4c124cf79ae1fa8efac..d70416916bae6949fe1855236f8f20b1ec633d7e 100644 (file)
--- 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
index 2e5033ec571e9e28f79fa6b937940d10d1873a09..db2beff4d303762e90f4ebb1537fae69fea168b3 100644 (file)
@@ -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(