From e5c1c90d26323e498c0f67a1a9f50e8711eaa821 Mon Sep 17 00:00:00 2001 From: Daniel M Date: Fri, 27 Sep 2024 10:13:27 -0400 Subject: [PATCH] fix:typing-extensions dependency fix #330 --- docs/about/changelog.md | 4 ++++ poetry.lock | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/about/changelog.md b/docs/about/changelog.md index de2f9bc9..a51d2e55 100644 --- a/docs/about/changelog.md +++ b/docs/about/changelog.md @@ -18,6 +18,10 @@ toc_depth: 2 - Testing against valkey 8.0 #333 - Improve documentation #332 +### 🐛 Bug Fixes + +- Replace `typing_extensions` dependency with `typing-extensions` #330 + ## v2.24.1 ### 🐛 Bug Fixes diff --git a/poetry.lock b/poetry.lock index 2a56eb32..77e082b8 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1329,4 +1329,4 @@ probabilistic = ["pyprobables"] [metadata] lock-version = "2.0" python-versions = "^3.7" -content-hash = "f24404933405f1e7742e6a3d31003b21554541051c3f1d0960e3b84e0798b453" +content-hash = "1466a175b2cb7d29361a096a25ccf797de9891f44ccfdce1449ef4a1291c5575" diff --git a/pyproject.toml b/pyproject.toml index 215cf905..24d7f464 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ include = [ python = "^3.7" redis = ">=4" sortedcontainers = "^2" -typing_extensions = { version = "^4.7", python = "<3.11" } +typing-extensions = { version = "^4.7", python = "<3.11" } lupa = { version = ">=2.1,<3.0", optional = true } jsonpath-ng = { version = "^1.6", optional = true } pyprobables = { version = "^0.6", optional = true }