From 41127d9d358eb6d6ae1d6eb9091af25190de6efc Mon Sep 17 00:00:00 2001 From: Roman Cattaneo <> Date: Mon, 2 Dec 2024 12:03:20 +0100 Subject: [PATCH] Keep exteneded typings To be dealt with when dropping support for python 3.8 and 3.9 --- src/gt4py/eve/extended_typing.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gt4py/eve/extended_typing.py b/src/gt4py/eve/extended_typing.py index 849857413d..bf44824b49 100644 --- a/src/gt4py/eve/extended_typing.py +++ b/src/gt4py/eve/extended_typing.py @@ -73,6 +73,10 @@ Set as AbstractSet, ValuesView as ValuesView, ) + from contextlib import ( + AbstractAsyncContextManager as AsyncContextManager, + AbstractContextManager as ContextManager, + ) from re import Match as Match, Pattern as Pattern