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/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']

steps:
- uses: actions/checkout@v5
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ This is a record of all past pytask-latex releases and what went into them in re
chronological order. Releases follow [semantic versioning](https://semver.org/) and all
releases are available on [Anaconda.org](https://anaconda.org/conda-forge/pytask-latex).

## Unreleased

- {pull}`93` drops support for Python 3.8 and 3.9 and adds support for Python 3.14.

## 0.4.3 - 2025-06-01

- {pull}`75` adds rye.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"latex-dependency-scanner>=0.1.3",
"pluggy>=1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/pytask_latex/collect.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from subprocess import CalledProcessError
from typing import TYPE_CHECKING
from typing import Any
from typing import Callable

import latex_dependency_scanner as lds
from pytask import Mark
Expand All @@ -34,6 +33,7 @@
from pytask_latex.utils import to_list

if TYPE_CHECKING:
from collections.abc import Callable
from collections.abc import Sequence


Expand Down
2 changes: 1 addition & 1 deletion src/pytask_latex/compilation_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ def compilation_step(path_to_tex: Path, path_to_document: Path):
import subprocess
from typing import TYPE_CHECKING
from typing import Any
from typing import Callable

from pytask_latex.utils import to_list

if TYPE_CHECKING:
from collections.abc import Callable
from pathlib import Path


Expand Down
5 changes: 4 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@
import sys
from contextlib import contextmanager
from pathlib import Path
from typing import Callable
from typing import TYPE_CHECKING

import pytest
from click.testing import CliRunner
from pytask import storage

if TYPE_CHECKING:
from collections.abc import Callable

TEST_RESOURCES = Path(__file__).parent / "resources"


Expand Down