mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-21 00:58:28 +08:00
distutils package was removed in 3.12 (#10249)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user