Skip to content

Commit

Permalink
Update minimum typing-extensions version to 4.4
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tlento committed Oct 26, 2023
1 parent 4a5df30 commit be143f5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .changes/unreleased/Dependencies-20231026-151457.yaml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]

Expand Down

0 comments on commit be143f5

Please sign in to comment.