Skip to content

Commit

Permalink
Add support for Python 3.13.
Browse files Browse the repository at this point in the history
  • Loading branch information
kpfleming committed Oct 13, 2024
1 parent 067f632 commit 45e6c25
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
repos:
- repo: https://github.com/tox-dev/pyproject-fmt
rev: "2.2.1"
rev: "2.3.0"
hooks:
- id: pyproject-fmt
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.1
rev: v0.6.9
hooks:
- id: ruff-format
- id: ruff
Expand Down
1 change: 1 addition & 0 deletions changelog.d/+e1c61bf0.adding.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added support for Python 3.13.
1 change: 0 additions & 1 deletion changelog.d/11.adding.md

This file was deleted.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
dynamic = [
Expand Down
2 changes: 0 additions & 2 deletions src/jinjanator_plugin_ansible/plugin.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from __future__ import annotations

import importlib

from typing import cast
Expand Down
2 changes: 0 additions & 2 deletions tests/test_plugin.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from __future__ import annotations

from jinjanator_plugin_ansible import plugin


Expand Down

0 comments on commit 45e6c25

Please sign in to comment.