Skip to content

Commit

Permalink
Merge pull request #5 from jg-rp/py313
Browse files Browse the repository at this point in the history
Test against Python version 3.13
  • Loading branch information
jg-rp authored Oct 25, 2024
2 parents 3a720d8 + 1b1b327 commit 81f8e61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
fail-fast: false
matrix:
include:
- { python: "3.13", os: ubuntu-latest, env: py313-3 }
- { python: "3.12", os: ubuntu-latest, env: py312-3 }
- { python: "3.11", os: ubuntu-latest, env: py311-3 }
- { python: "3.11", os: ubuntu-latest, env: py311-2 }
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = ["flask>=2.0", "MarkupSafe>=2.0.0", "python-liquid>=1.1.0"]
dependencies = ["flask>=2.0", "MarkupSafe>=2.0.0, <3", "python-liquid>=1.1.0"]

[project.urls]
"Change Log" = "https://github.com/jg-rp/flask-liquid/blob/main/CHANGES.md"
Expand Down Expand Up @@ -63,7 +64,7 @@ lint = "ruff check ."
typing = "mypy"

[[tool.hatch.envs.test.matrix]]
python = ["38", "39", "310", "311", "312", "pypy38", "pypy39", "pypy310"]
python = ["38", "39", "310", "311", "312", "313", "pypy38", "pypy39", "pypy310"]
flask = ["2", "3"]

[tool.hatch.envs.test.overrides]
Expand Down

0 comments on commit 81f8e61

Please sign in to comment.