chore: drop toml, use tomli (#876)

This is required to get TOML 1.0 support, and lightens our dependencies a bit.
This commit is contained in:
Henry Schreiner
2021-10-15 11:30:16 -04:00
committed by GitHub
parent 414b4f02ad
commit bf36398572
10 changed files with 59 additions and 41 deletions
+3 -2
View File
@@ -4,9 +4,9 @@ import sys
from typing import TYPE_CHECKING, NoReturn, Set, Union
if sys.version_info < (3, 8):
from typing_extensions import Final, Literal, TypedDict
from typing_extensions import Final, Literal, Protocol, TypedDict
else:
from typing import Final, Literal, TypedDict
from typing import Final, Literal, Protocol, TypedDict
__all__ = (
@@ -18,6 +18,7 @@ __all__ = (
"PopenBytes",
"PathOrStr",
"PlatformName",
"Protocol",
"PLATFORMS",
"assert_never",
)