Bump reportlab to 4.2.4 (#12701)

This commit is contained in:
David Salvisberg
2024-09-29 13:35:05 +02:00
committed by GitHub
parent 119cd09655
commit 6990bb64a9
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
version = "4.2.2"
version = "4.2.4"
# GitHub mirror of https://hg.reportlab.com/hg-public/reportlab/file
upstream_repository = "https://github.com/MrBitBucket/reportlab-mirror"

View File

@@ -34,6 +34,6 @@ class GraphicsFlowable(Flowable):
def __init__(self, drawing) -> None: ...
def draw(self) -> None: ...
def drawToFile(d: Drawing, fn: str | IO[bytes], msg: str = "", showBoundary=..., autoSize: int = 1, canvasKwds={}) -> None: ...
def drawToString(d: Drawing, msg: str = "", showBoundary=..., autoSize: int = 1, canvasKwds={}) -> str: ...
def drawToFile(d: Drawing, fn: str | IO[bytes], msg: str = "", showBoundary=..., autoSize: int = 1, **kwds) -> None: ...
def drawToString(d: Drawing, msg: str = "", showBoundary=..., autoSize: int = 1, **kwds) -> str: ...
def test(outDir: str = "pdfout", shout: bool = False) -> None: ...