mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
setuptools: bump to 67.7 (#10069)
Fixes #10067 Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
version = "67.6.*"
|
||||
version = "67.7.*"
|
||||
|
||||
[tool.stubtest]
|
||||
ignore_missing_stub = true
|
||||
|
||||
@@ -2,10 +2,10 @@ from abc import abstractmethod
|
||||
from collections.abc import Iterable, Mapping, Sequence
|
||||
from typing import Any
|
||||
|
||||
from setuptools._deprecation_warning import SetuptoolsDeprecationWarning as SetuptoolsDeprecationWarning
|
||||
from setuptools.depends import Require as Require
|
||||
from setuptools.dist import Distribution as Distribution
|
||||
from setuptools.extension import Extension as Extension
|
||||
from setuptools.warnings import SetuptoolsDeprecationWarning as SetuptoolsDeprecationWarning
|
||||
|
||||
from ._distutils.cmd import Command as _Command
|
||||
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
class SetuptoolsDeprecationWarning(Warning): ...
|
||||
15
stubs/setuptools/setuptools/warnings.pyi
Normal file
15
stubs/setuptools/setuptools/warnings.pyi
Normal file
@@ -0,0 +1,15 @@
|
||||
class SetuptoolsWarning(UserWarning):
|
||||
@classmethod
|
||||
def emit(
|
||||
cls,
|
||||
summary: str | None = None,
|
||||
details: str | None = None,
|
||||
due_date: tuple[int, int, int] | None = None,
|
||||
see_docs: str | None = None,
|
||||
see_url: str | None = None,
|
||||
stacklevel: int = 2,
|
||||
**kwargs,
|
||||
) -> None: ...
|
||||
|
||||
class InformationOnly(SetuptoolsWarning): ...
|
||||
class SetuptoolsDeprecationWarning(SetuptoolsWarning): ...
|
||||
Reference in New Issue
Block a user