Skip to content

Commit a979ada

Browse files
authored
Merge pull request #397 from xxyzz/3.14
Add Python 3.14 action
2 parents 1ab82da + 7276711 commit a979ada

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v5
1919
- uses: actions/setup-python@v6
2020
with:
21-
python-version: '3.13'
21+
python-version: '3.14'
2222
cache: 'pip'
2323
- run: python -m pip install -e .[dev]
2424
- run: python -m mypy -p wikitextprocessor

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: ['3.10', '3.11', '3.12', '3.13']
23+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
2424
steps:
2525
- uses: actions/checkout@v5
2626
with:

src/wikitextprocessor/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ def pop_until_nth_list(ctx: "Wtp", list_token: str) -> None:
897897
# in order to add a new nested list node
898898
passed_nodes += 1
899899

900-
# pop until the stack top is the taregt list node
900+
# pop until the stack top is the target list node
901901
for _ in range(len(ctx.parser_stack) - passed_nodes):
902902
_parser_pop(ctx, True)
903903

0 commit comments

Comments
 (0)