Replace the use of the unmaintained toml package with the modern alternatives: the built-in tomllib in Python 3.11+, and its equivalent tomli in older Python versions. tomli installs type stubs, so there is no need for an additional types-* package for it.
Replace the use of the unmaintained
toml
package with the modern alternatives: the built-intomllib
in Python 3.11+, and its equivalenttomli
in older Python versions.tomli
installs type stubs, so there is no need for an additionaltypes-*
package for it.