From: Mike Bayer Date: Thu, 2 Dec 2021 21:07:51 +0000 (-0500) Subject: block class_getitem test for python 3.6 X-Git-Tag: rel_1_4_28~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=adcd2b3dce54f64fd173514beb2de59d548f5bed;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git block class_getitem test for python 3.6 This commit in 3d4e64b8ef6 wont work on python 3.6. Change-Id: I8e39268914ee972247e6cf54f6c07366e0033133 --- diff --git a/test/orm/declarative/test_typing_py3k.py b/test/orm/declarative/test_typing_py3k.py index 823fe54f10..7cd70616b7 100644 --- a/test/orm/declarative/test_typing_py3k.py +++ b/test/orm/declarative/test_typing_py3k.py @@ -9,6 +9,8 @@ from sqlalchemy.testing import fixtures class DeclarativeBaseTest(fixtures.TestBase): + __requires__ = ("python37",) + def test_class_getitem(self): T = TypeVar("T", bound="CommonBase") # noqa