Update installation instructions and bump Python requirement to 3.13; remove Poetry and nox; update pre-commit hooks.

This commit is contained in:
2025-06-29 04:24:25 +02:00
parent 41c03e10f6
commit b87639910b
7 changed files with 1638 additions and 101 deletions

View File

@ -1,7 +1,7 @@
from __future__ import annotations
import zoneinfo
from datetime import datetime, timezone
from datetime import UTC, datetime
from typing import TYPE_CHECKING
import pytest
@ -25,7 +25,7 @@ def dummy_job() -> None:
def test_calculate() -> None:
"""Test the calculate function with various job inputs."""
scheduler = BackgroundScheduler()
scheduler.timezone = timezone.utc
scheduler.timezone = UTC
scheduler.start()
# Create a job with a DateTrigger