Skip to content

Commit 402bfb0

Browse files
committed
python verison 3.9 does not work with pre-commit
1 parent ccf00ce commit 402bfb0

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
11+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1212

1313
steps:
1414
- name: Checkout repository

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ authors = [
66
{name = "Tobias Brox",email = "tobias@redpill-linpro.com"}
77
]
88
readme = "README.md"
9-
requires-python = ">=3.9,<4.0"
9+
## caldav still supports 3.9, so we would definitively like
10+
## to support python 3.9 for a while. However, the precommit
11+
## logic I just threw in requires me to officially ditch 3.9-support.
12+
## I guess the caldav tests will still exercise this library with 3.9.
13+
requires-python = ">=3.10,<4.0"
1014
dependencies = [
1115
]
1216

0 commit comments

Comments
 (0)