Skip to content

Commit

Permalink
Test against Python version 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
jg-rp committed Oct 8, 2024
1 parent 7c2806d commit b5a09c6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
exclude:
- os: macos-latest
python-version: "3.7"
- os: windows-latest
python-version: "3.7"
- os: macos-latest
python-version: "3.8"
- os: windows-latest
python-version: "3.8"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
3 changes: 2 additions & 1 deletion liquid/builtin/loaders/base_loader.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Base template loader."""

from __future__ import annotations

from abc import ABC
Expand Down Expand Up @@ -48,7 +49,7 @@ class BaseLoader(ABC): # noqa: B024
Attributes:
caching_loader (bool): Indicates if this loader implements its own cache.
Setting this sto `True` will cause the `Environment` to disable its cache
Setting this to `True` will cause the `Environment` to disable its cache
when initialized with a caching loader.
"""

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"python-dateutil>=2.8.1",
Expand Down

0 comments on commit b5a09c6

Please sign in to comment.