From: Mike Bayer Date: Thu, 6 Aug 2026 14:40:33 +0000 (-0400) Subject: pin asyncmy to 0.2.12 or greater X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ea271cc9653ef9fe12d26f1911aa8d13386cbab;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git pin asyncmy to 0.2.12 or greater they seem to have fixed a BIT issue Change-Id: I393fa4423356b94859cca3c282f6bfcfae3a7656 --- diff --git a/pyproject.toml b/pyproject.toml index 04e84659cf..33a9841829 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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]", diff --git a/test/dialect/mysql/test_types.py b/test/dialect/mysql/test_types.py index 9ce8e3b33c..9770db8216 100644 --- a/test/dialect/mysql/test_types.py +++ b/test/dialect/mysql/test_types.py @@ -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(