Skip to content

Commit

Permalink
Upgrade typing-extensions to 4.12.2 (#17439)
Browse files Browse the repository at this point in the history
Closes #17438

Summary of the issue:
Updates typing-extensions form 4.9 to 4.12.2.

Description of user facing changes
None

Description of development approach
Allows developers to use TypeVar more efficiently, along with preparing to migrate to newer Python releases such as 3.13 as the dependency supports it.
  • Loading branch information
josephsl authored Nov 27, 2024
1 parent 2925163 commit 96fe482
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ schedule==1.2.1
#NVDA_DMP requires diff-match-patch
fast-diff-match-patch==2.1.0

# typing_extensions are required for specifying default value for `TypeVar`, which is not yet possible with any released version of Python (see PEP 696)
typing-extensions==4.9.0
# typing_extensions are required for specifying default value for `TypeVar` prior to Python 3.13 (see PEP 696)
typing-extensions==4.12.2

# pycaw is a Core Audio Windows Library used for sound split
pycaw==20240210
Expand Down
1 change: 1 addition & 0 deletions user_docs/en/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ Add-ons will need to be re-tested and have their manifest updated.
* Updated Robot Framework to 7.1.1. (#17329, @josephsl)
* Updated configobj to 5.1.0 commit `8be5462`. (#17328)
* Updated pre-commit to 4.0.1. (#17260)
* Updated typing-extensions to 4.12.2. (#17438, @josephsl)
* Updated licensecheck to 2024.3. (#17440, @josephsl)
* `ui.browseableMessage` may now be called with options to present a button for copying to clipboard, and/or a button for closing the window. (#17018, @XLTechie)
* Several additions to identify link types (#16994, @LeonarddeR, @nvdaes)
Expand Down

0 comments on commit 96fe482

Please sign in to comment.