Skip to content

Commit 901ff16

Browse files
committed
Fix tzdata dependency too-specific pin
tzdata should always just be the newest we can pull; there's no sense in keeping older versions through time. Fixes #209 Fixes #210
1 parent 82de9b4 commit 901ff16

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ classifiers = [
2222
dependencies = [
2323
"aeventkit>=2.1.0,<3.0.0",
2424
"nest_asyncio",
25-
"tzdata>=2025.2,<2026.0",
25+
"tzdata>=2025.2"
2626
]
2727

2828
[project.urls]
@@ -51,7 +51,7 @@ python = ">=3.11"
5151
aeventkit = "^2.1.0"
5252
# aeventkit = { path = "../eventkit", develop = true }
5353
nest_asyncio = "*"
54-
tzdata = "^2025.2"
54+
tzdata = ">=2025.2"
5555

5656
[tool.poetry.group.dev]
5757
optional = true

0 commit comments

Comments
 (0)