How to Install and Uninstall python3-annotated-types.noarch Package on Fedora 38

Last updated: January 13,2025

1. Install "python3-annotated-types.noarch" package

This is a short guide on how to install python3-annotated-types.noarch on Fedora 38

$ sudo dnf update $ sudo dnf install python3-annotated-types.noarch

2. Uninstall "python3-annotated-types.noarch" package

Please follow the guidelines below to uninstall python3-annotated-types.noarch on Fedora 38:

$ sudo dnf remove python3-annotated-types.noarch $ sudo dnf autoremove

3. Information about the python3-annotated-types.noarch package on Fedora 38

Last metadata expiration check: 1:47:02 ago on Sat Mar 16 16:59:57 2024.
Available Packages
Name : python3-annotated-types
Version : 0.6.0
Release : 1.fc38
Architecture : noarch
Size : 28 k
Source : python-annotated-types-0.6.0-1.fc38.src.rpm
Repository : updates
Summary : Reusable constraint types to use with typing.Annotated
URL : https://github.com/annotated-types/annotated-types
License : MIT
Description : PEP-593 added typing.Annotated as a way of adding context-specific metadata to
: existing types, and specifies that Annotated[T, x] should be treated as T by
: any tool or library without special logic for x.
:
: This package provides metadata objects which can be used to represent common
: constraints such as upper and lower bounds on scalar values and collection
: sizes, a Predicate marker for runtime checks, and descriptions of how we intend
: these metadata to be interpreted. In some cases, we also note alternative
: representations which do not require this package.