Skip to content

Commit

Permalink
chore(deps): Add support for python 3.11 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
xmnlab committed Dec 21, 2023
1 parent 1b3d79f commit b3f5a3b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ jobs:

strategy:
matrix:
python_version: ["3.8.1", "3.9", "3.10"]
python_version:
- "3.8.1"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

concurrency:
group: ci-tests-${{ matrix.python_version }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ exclude = [
"sugar" = "sugar.__main__:app"

[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
python = ">=3.8.1"
Jinja2 = ">=2"
sh = ">=2.0.0"
pyyaml = ">=6"
Expand Down

0 comments on commit b3f5a3b

Please sign in to comment.