this test will fail on sqlalchemy prior to 2.0.25 which is not
yet released so make the req very specific
Change-Id: Ifa758949f773484cf03fec04e37042b42b8a607e
sqla_14_18 = _vers >= (1, 4, 18)
sqla_14_26 = _vers >= (1, 4, 26)
sqla_2 = _vers >= (2,)
+sqla_2_0_25 = _vers >= (2, 25)
sqla_2_1 = _vers >= (2, 1)
sqlalchemy_version = __version__
# issue here was fixed in SQLAlchemy #12954 for sqlite, 2.0
# release
return exclusions.skip_if(
- lambda config: not sqla_compat.sqla_2
+ lambda config: not sqla_compat.sqla_2_0_25
and exclusions.against(config, "sqlite")
)