distutils package was removed in 3.12 (#10249)

This commit is contained in:
Nikita Sobolev
2023-06-04 08:08:09 +03:00
committed by GitHub
parent d5555b1018
commit c1a857a41a
5 changed files with 7 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
version = "2.11.*"
requires = ["types-pytz"]
requires = ["types-pytz", "types-setuptools"]
obsolete_since = "2.12.1" # Released on 2023-02-28
partial_stub = true

View File

@@ -1,8 +1,9 @@
import abc
from _typeshed import Incomplete
from distutils.cmd import Command as _Command
from typing import Any
from setuptools._distutils.cmd import Command as _Command
def listify_value(arg, split: Incomplete | None = None): ...
class Command(_Command, metaclass=abc.ABCMeta):