setuptools & distutils: ClassVar mutables (and tuples) (#12403)

This commit is contained in:
Avasam
2024-07-23 08:17:02 -04:00
committed by GitHub
parent ef42f3b765
commit 0b1d35829b
49 changed files with 190 additions and 159 deletions

View File

@@ -1,3 +1,5 @@
from typing import ClassVar
from sassutils.builder import Manifest as Manifest
from setuptools import Command, Distribution
@@ -5,7 +7,7 @@ def validate_manifests(dist: Distribution, attr: str, value: object) -> None: ..
class build_sass(Command):
description: str
user_options: list[tuple[str, str, str]]
user_options: ClassVar[list[tuple[str, str, str]]]
package_dir: dict[str, str] | None
output_style: str
def initialize_options(self) -> None: ...