From 1868f7d2a674c68bd0bc0b846ebbdb40d8807117 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrique=20Gonz=C3=A1lez=20Paredes?= Date: Tue, 26 Mar 2024 10:42:17 +0100 Subject: [PATCH] build: bump minimum version of typing_extensions requirement (#1512) typing_extensions 4.3.0 adds support for generic NamedTuples, which is now required in our codebase. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 43ebaa9d2a..98173f58e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ dependencies = [ 'pybind11>=2.10.1', 'setuptools>=65.5.0', 'tabulate>=0.8.10', - 'typing-extensions>=4.2,<4.6.0', + 'typing-extensions>=4.3.0,<4.6.0', 'xxhash>=1.4.4,<3.1.0' ] description = 'Python library for generating high-performance implementations of stencil kernels for weather and climate modeling from a domain-specific language (DSL)'