Skip to content

Commit

Permalink
Test against python between 3.9 to 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ptgolden committed Sep 18, 2024
1 parent 18e1131 commit 83c6e6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12']
os: [ "ubuntu-latest", "windows-latest" ]
env:
PYTHON: ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
downloader = "kghub_downloader.main:typer_app"

[tool.poetry.dependencies]
python = ">=3.8, <4.0"
python = ">=3.9, <4.0"
elasticsearch = ">7.0, <9.0"
compress-json = ">1.0, <2.0"
PyYAML = ">5.0,<7.0"
Expand Down Expand Up @@ -37,7 +37,7 @@ style = "pep440"

[tool.black]
line-length = 120
target-version = ["py38", "py39", "py310"]
target-version = ["py39", "py310", "py311", "py312"]

[tool.ruff]
lint.extend-ignore = [
Expand Down

0 comments on commit 83c6e6f

Please sign in to comment.