From be143f534ba075bd22fdd71203e4329e9024ed03 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. --- .changes/unreleased/Dependencies-20231026-151457.yaml | 6 ++++++ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/unreleased/Dependencies-20231026-151457.yaml diff --git a/.changes/unreleased/Dependencies-20231026-151457.yaml b/.changes/unreleased/Dependencies-20231026-151457.yaml new file mode 100644 index 0000000000..7b8d303043 --- /dev/null +++ b/.changes/unreleased/Dependencies-20231026-151457.yaml @@ -0,0 +1,6 @@ +kind: Dependencies +body: Update typing-extensions minimum version to 4.4 +time: 2023-10-26T15:14:57.44532-07:00 +custom: + Author: tlento + PR: "823" diff --git a/pyproject.toml b/pyproject.toml index 18d257fb3c..92e5beb583 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", ]