-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from Chandrahas-B/main
Add support for python3.9 and 3.10
- Loading branch information
Showing
3 changed files
with
51 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[tool.poetry] | ||
name = "tz-canary" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
description = "Infer plausible time zones for a time series dataset based on Daylight Savings Time switches" | ||
authors = ["Leon Overweel <[email protected]>"] | ||
readme = "README.md" | ||
packages = [{include = "tz_canary"}] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
python = "^3.9" | ||
pandas = "^2.0.3" | ||
pytz = "~2023.3" # pinned because we rely on protected properties | ||
|
||
|