/
niceSOFT
/
python3-build
Обзор
Документация
Войти
/
niceSOFT
/
python3-build
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/build/_types.py
22 строки
591 B
Henry Schreiner
feat: drop 3.9, require 3.10+ (#1036)
23 апр 2026, 23:06
Не верифицирован
23 апр 2026, 23:06
c44c143
Код
Авторство
О чём код?
from __future__ import annotations import collections.abc import os import typing __all__ = ['ConfigSettings', 'Distribution', 'StrPath', 'SubprocessRunner'] ConfigSettings = collections.abc.Mapping[str, str | collections.abc.Sequence[str]] Distribution = typing.Literal['sdist', 'wheel', 'editable'] StrPath = str | os.PathLike[str] TYPE_CHECKING = False if TYPE_CHECKING: from pyproject_hooks import SubprocessRunner else: SubprocessRunner = collections.abc.Callable[ [collections.abc.Sequence[str], str | None, collections.abc.Mapping[str, str] | None], None ]