From a2a8a811c8122bec829a4377f3d796d167f6332b Mon Sep 17 00:00:00 2001 From: tlento Date: Thu, 26 Oct 2023 15:13:06 -0700 Subject: [PATCH] Update minimum typing-extensions version to 4.4 The @override decorator was added to typing-extensions with version 4.4, but our minimum version is 4.0, which means there are scenarios where this will suddenly start throwing errors. Since we require 4.4, let's make that true in the build directive. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 18d257fb3c..56a94d2b80 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ dependencies = [ "ruamel.yaml~=0.17.21", "rudder-sdk-python~=1.0.3", "tabulate>=0.8.9", - "typing_extensions>=4.0.0", + "typing_extensions>=4.4.0", "update-checker~=0.18.0", ]