You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix: Replace typing_extensions with stdlib typing and drop typer[all]
Replace `from typing_extensions import Annotated` with
`from typing import Annotated` in all source modules. The
Annotated type has been available in the standard library
typing module since Python 3.9.
Update pyproject.toml:
- Change typer[all]>=0.15,<0.22 to typer>=0.15 since
the [all] extra was removed in Typer 0.22.0 (rich and
shellingham are now bundled by default)
- Bump requires-python from >=3.8 to >=3.9 (Typer 0.21+
already requires Python >=3.9)
- Update classifiers to replace Python 3.8 with 3.9
Change-Id: I0656815c27538f453850046042afaf1c6d7f3b2f
Co-Authored-By: Claude <noreply@anthropic.com>
Signed-off-by: Matthew Watkins <mwatkins@linuxfoundation.org>
0 commit comments