From 072e31f76464f821796e26a0ca37087376a2ac53 Mon Sep 17 00:00:00 2001 From: tlento Date: Wed, 15 Nov 2023 14:46:59 -0800 Subject: [PATCH] Relax version pin on typing-extensions to ~=4.4 Due to my persistent inability to understand the semantics of Python's `~=` version syntax I accidentally pinned typing extensions to 4.4.x instead of >= 4.4, < 5. This addresses the error. --- .changes/unreleased/Dependencies-20231115-144849.yaml | 6 ++++++ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/unreleased/Dependencies-20231115-144849.yaml diff --git a/.changes/unreleased/Dependencies-20231115-144849.yaml b/.changes/unreleased/Dependencies-20231115-144849.yaml new file mode 100644 index 0000000000..1502d6c2cf --- /dev/null +++ b/.changes/unreleased/Dependencies-20231115-144849.yaml @@ -0,0 +1,6 @@ +kind: Dependencies +body: Relax version pin on typing extensions to allow >=4.4, <5 +time: 2023-11-15T14:48:49.411998-08:00 +custom: + Author: tlento + PR: "875" diff --git a/pyproject.toml b/pyproject.toml index 9443470016..289abf35f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ dependencies = [ "rapidfuzz~=3.0", "ruamel.yaml~=0.17.21", "tabulate>=0.8.9", - "typing_extensions~=4.4.0", + "typing_extensions~=4.4", "update-checker~=0.18.0", ]