Skip to content

Commit

Permalink
Updated the typing_extensions dependency
Browse files Browse the repository at this point in the history
Fixes #444. Closes #445.
  • Loading branch information
agronholm committed Mar 24, 2024
1 parent afebd5d commit 286f86d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/versionhistory.rst
Expand Up @@ -4,6 +4,11 @@ Version history
This library adheres to
`Semantic Versioning 2.0 <https://semver.org/#semantic-versioning-200>`_.

**UNRELEASED**

- Fixed missing ``typing_extensions`` dependency for Python 3.12
(`#444 <https://github.com/agronholm/typeguard/issues/444>`_)

**4.2.0** (2023-03-23)

- Added support for specifying options for the pytest plugin via pytest config files
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -26,7 +26,7 @@ classifiers = [
requires-python = ">= 3.8"
dependencies = [
"importlib_metadata >= 3.6; python_version < '3.10'",
"typing_extensions >= 4.7.0; python_version < '3.12'",
"typing_extensions >= 4.10.0; python_version < '3.13'",
]
dynamic = ["version"]

Expand Down

0 comments on commit 286f86d

Please sign in to comment.