Bump openpyxl to 3.1.5 (#12238)

This commit is contained in:
sobolevn
2024-06-29 23:10:14 +03:00
committed by GitHub
parent 712e4146ef
commit 9fcaf3fe31
3 changed files with 3 additions and 4 deletions

View File

@@ -1,2 +1,2 @@
version = "3.1.4"
version = "3.1.5"
upstream_repository = "https://foss.heptapod.net/openpyxl/openpyxl"

View File

@@ -6,8 +6,6 @@ from openpyxl.descriptors.nested import NestedText
from openpyxl.descriptors.serialisable import Serialisable
from openpyxl.xml.functions import Element
def get_version(): ...
class DigSigBlob(Serialisable):
__elements__: ClassVar[tuple[str, ...]]
__attrs__: ClassVar[tuple[str, ...]]

View File

@@ -1,5 +1,5 @@
from _typeshed import ConvertibleToInt, Incomplete, Unused
from collections.abc import Iterator
from collections.abc import Iterable, Iterator
from typing import ClassVar, Literal
from openpyxl.descriptors.base import Bool, Integer, String, Typed, _ConvertibleToBool
@@ -44,6 +44,7 @@ class NamedStyle(Serialisable):
def as_name(self) -> _NamedCellStyle: ...
class NamedStyleList(list[NamedStyle]):
def __init__(self, iterable: Iterable[NamedStyle] = ()) -> None: ... # type: ignore[override]
@property
def names(self) -> list[str]: ...
def __getitem__(self, key: int | str) -> NamedStyle: ... # type: ignore[override]