Skip to content

Commit 159e209

Browse files
committed
Drop support for python 3.9 so we can use match/case
1 parent c59a144 commit 159e209

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
23+
python: ["3.10", "3.11", "3.12", "3.13"]
2424
defaults:
2525
run:
2626
working-directory: .

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "undate"
77
description = "library for working with uncertain, fuzzy, or partially unknown dates and date intervals"
88
readme = "README.md"
99
license = { text = "Apache-2" }
10-
requires-python = ">= 3.9"
10+
requires-python = ">= 3.10"
1111
dynamic = ["version"]
1212
dependencies = ["lark[interegular]", "numpy", "convertdate", "strenum; python_version < '3.11'"]
1313
authors = [
@@ -31,7 +31,6 @@ keywords = [
3131
classifiers = [
3232
"Development Status :: 2 - Pre-Alpha",
3333
"Programming Language :: Python :: 3",
34-
"Programming Language :: Python :: 3.9",
3534
"Programming Language :: Python :: 3.10",
3635
"Programming Language :: Python :: 3.11",
3736
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)