Skip to content

Commit

Permalink
Add Python 3.12, remove 3.9 and 3.10, update ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
jschlyter committed Dec 17, 2024
1 parent d234e0b commit 7d41e35
Show file tree
Hide file tree
Showing 5 changed files with 551 additions and 566 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ jobs:
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
- id: check-yaml
- id: check-json
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.8
rev: v0.8.3
hooks:
- id: ruff
- id: ruff-format
2 changes: 1 addition & 1 deletion chargeamps/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from pydantic import BaseModel, ConfigDict, PlainSerializer
from pydantic.alias_generators import to_camel
from typing_extensions import Annotated
from typing import Annotated

CustomDateTime = Annotated[
datetime,
Expand Down
Loading

0 comments on commit 7d41e35

Please sign in to comment.