Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.13", "3.14"]
os: [ubuntu-latest]

steps:
Expand Down
8 changes: 4 additions & 4 deletions build_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from __future__ import annotations

from argparse import ArgumentParser, Namespace
from collections.abc import Sequence
from collections.abc import Iterable, Sequence
from contextlib import suppress, contextmanager
from dataclasses import dataclass
import filecmp
Expand All @@ -42,7 +42,7 @@
from pathlib import Path
from string import Template
from time import perf_counter, sleep
from typing import Iterable, Literal
from typing import Literal
from urllib.parse import urljoin

import jinja2
Expand Down Expand Up @@ -479,15 +479,15 @@ def version_info():
"""Handler for --version."""
try:
platex_version = head(
subprocess.check_output(["platex", "--version"], universal_newlines=True),
subprocess.check_output(["platex", "--version"], text=True),
lines=3,
)
except FileNotFoundError:
platex_version = "Not installed."

try:
xelatex_version = head(
subprocess.check_output(["xelatex", "--version"], universal_newlines=True),
subprocess.check_output(["xelatex", "--version"], text=True),
lines=2,
)
except FileNotFoundError:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires =
tox>=4.2
env_list =
lint
py{313, 312, 311, 310}
py{314, 313}

[testenv]
package = wheel
Expand Down