Skip to content

Commit

Permalink
Python 3.7 - 3.8 are no-go for poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
mdancho84 committed Oct 5, 2023
1 parent 2530da6 commit 142d303
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/timetk-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ jobs:
fail-fast: false
matrix:
config:
- { os: ubuntu-latest, python-version: '3.7' }
- { os: ubuntu-latest, python-version: '3.8' }
# Poetry requires python 3.9+
# - { os: ubuntu-latest, python-version: '3.7' }
# - { os: ubuntu-latest, python-version: '3.8' }
- { os: ubuntu-latest, python-version: '3.9' }
- { os: ubuntu-latest, python-version: '3.10' }
- { os: ubuntu-latest, python-version: '3.11' }
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

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

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Matt Dancho <[email protected]>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.9"
pandas = "^2.1.0"
pandas-flavor = "^0.6.0"
matplotlib = "^3.8.0"
Expand All @@ -24,6 +24,7 @@ pytest = "^7.4.2"

[tool.poetry.group.docs.dependencies]
quarto = "^0.1.0"
quartodoc = "^0.6.2"

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 142d303

Please sign in to comment.