]> 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:40:33 +0000 (10:40 -0400)
they seem to have fixed a BIT issue

Change-Id: I393fa4423356b94859cca3c282f6bfcfae3a7656

pyproject.toml
test/dialect/mysql/test_types.py

index 04e84659cfd523aa413ff1db72476a67eeea7216..33a98418290b5afcb232dba2a8a2232ab431c266 100644 (file)
@@ -81,7 +81,7 @@ aioodbc = [
 ]
 asyncmy = [
     "sqlalchemy[asyncio]",
-    "asyncmy>=0.2.3,!=0.2.4,!=0.2.6",
+    "asyncmy>=0.2.12",
 ]
 aiosqlite = [
     "sqlalchemy[asyncio]",
index 9ce8e3b33c6182f6ba7b12123c3aab50cee960a2..9770db8216616e9f526a13c648cec18c324321a8 100644 (file)
@@ -653,7 +653,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):
@@ -672,7 +672,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(