Skip to content

Commit 82245e9

Browse files
committed
Fix: Bump minimum Python to 3.11 for datetime.fromisoformat Z suffix support
1 parent 8f45e82 commit 82245e9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python-version: ["3.10", "3.11", "3.12", "3.13"]
9+
python-version: ["3.11", "3.12", "3.13"]
1010
poetry-version: ["2.3.1"]
1111
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
1212
runs-on: ${{ matrix.os }}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository = "https://github.com/leakix/l9format-python"
1111
documentation = "https://github.com/leakix/l9format-python"
1212

1313
[tool.poetry.dependencies]
14-
python = "^3.10"
14+
python = "^3.11"
1515
serde = "^0.9.0"
1616

1717
[tool.poetry.group.dev.dependencies]
@@ -41,7 +41,7 @@ profile = "black"
4141
line_length = 80
4242

4343
[tool.mypy]
44-
python_version = "3.10"
44+
python_version = "3.11"
4545
warn_return_any = true
4646
warn_unused_configs = true
4747
disallow_untyped_defs = true

0 commit comments

Comments
 (0)