Skip to content

Commit

Permalink
Merge pull request #4 from Chandrahas-B/main
Browse files Browse the repository at this point in the history
Add support for python3.9 and 3.10
  • Loading branch information
leonoverweel authored Aug 30, 2023
2 parents 45eb8ab + fa8dadc commit 14ae2f4
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@ on:
jobs:
build_lint_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- run: poetry install
- run: poetry run pre-commit run -a
Expand Down
49 changes: 45 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
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

Expand Down

0 comments on commit 14ae2f4

Please sign in to comment.