Bump setuptools to 69.1.* (#11423)

This commit is contained in:
Avasam
2024-02-14 13:58:21 -05:00
committed by GitHub
parent 4664986cea
commit 48a0497b23
6 changed files with 13 additions and 17 deletions

View File

@@ -33,7 +33,7 @@ class test(Command):
@NonDataProperty
def test_args(self) -> list[str]: ...
def with_project_on_sys_path(self, func) -> None: ...
def project_on_sys_path(self, include_dists=[]): ...
def project_on_sys_path(self, include_dists=()): ...
@staticmethod
def paths_on_pythonpath(paths) -> None: ...
@staticmethod

View File

@@ -0,0 +1,9 @@
import sys
__all__ = ["tomllib"]
if sys.version_info >= (3, 11):
import tomllib
else:
# This is actually vendored
import tomli as tomllib # type: ignore[import-not-found] # pyright: ignore[reportMissingImports]

View File

@@ -1,3 +1,3 @@
from _typeshed import Incomplete, StrOrBytesPath
def shutil_rmtree(path: StrOrBytesPath, ignore_errors: bool = False, onexc: Incomplete | None = None) -> None: ...
def shutil_rmtree(path: StrOrBytesPath, ignore_errors: bool = False, onexc: Incomplete | None = None): ...