Skip to content

Commit 2bf561b

Browse files
committed
chore: remove Python 3.9 support
1 parent 939003e commit 2bf561b

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci-linux-ubuntu-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
python-version: [
14-
"3.9", "3.12"
14+
"3.10", "3.14"
1515
]
1616

1717
steps:

.github/workflows/ci-mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
python-version: [
14-
"3.9", "3.13"
14+
"3.10", "3.13"
1515
]
1616

1717
steps:

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def lint_mypy(context):
151151
--disable-error-code=misc
152152
--cache-dir=build/mypy
153153
--strict
154-
--python-version=3.9
154+
--python-version=3.10
155155
""",
156156
)
157157

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
RUN: %expect_exit 2 %html2pdf print --page-load-timeout 1000000 %S/index1.html %S/Output/index1.pdf 2>&1 | filecheck %s
22

3-
CHECK: main.py print: error: argument --page-load-timeout: Must be an integer in the range [0, 600].
3+
CHECK: {{.*}} print: error: argument --page-load-timeout: Must be an integer in the range [0, 600].

tests/integration/40_sdoc_only_child_does_not_break_page_when_surrounded_by_text_nodes/test.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
page2_text_normalized
2121
== """\
2222
1. Section 1
23-
Vivam us consectetur m ollis varius. Quisque posuere venenatis nulla, sit am et
24-
pulvinar m etus vestibulum sed. Sed at libero nec justo leo.
25-
StrictDoc Docum entation Test document
23+
Vivamus consectetur mollis varius. Quisque posuere venenatis nulla, sit amet
24+
pulvinar metus vestibulum sed. Sed at libero nec justo leo.
25+
StrictDoc Documentation Test document
2626
2025-12-21 3/4\
2727
"""
2828
), page2_text_normalized
@@ -35,8 +35,8 @@
3535
page3_text_normalized
3636
== """\
3737
2. Section 2
38-
L orem ipsum dolor sit am et, c
39-
StrictDoc Docum entation Test document
38+
Lorem ipsum dolor sit amet, c
39+
StrictDoc Documentation Test document
4040
2025-12-21 4/4\
4141
"""
4242
), page3_text_normalized

0 commit comments

Comments
 (0)