setuptools: bump to 67.7 (#10069)

Fixes #10067

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
Shantanu
2023-04-22 09:50:42 -06:00
committed by GitHub
parent 03b8c60a02
commit cc35f4be3b
4 changed files with 17 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
version = "67.6.*"
version = "67.7.*"
[tool.stubtest]
ignore_missing_stub = true

View File

@@ -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

View File

@@ -1 +0,0 @@
class SetuptoolsDeprecationWarning(Warning): ...

View 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): ...