Skip to content
This repository was archived by the owner on Mar 12, 2026. It is now read-only.

Commit ac45522

Browse files
authored
feat: support later python versions (#21)
1 parent 1987d63 commit ac45522

File tree

3 files changed

+34
-8
lines changed

3 files changed

+34
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: ["3.10"]
14-
poetry-version: [1.2.2]
13+
python-version: ["3.10", "3.11"]
14+
poetry-version: ["2"]
1515
os: [ubuntu-22.04]
1616
runs-on: ${{ matrix.os }}
1717
steps:

poetry.lock

Lines changed: 31 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Jack Strang <jack@tutorintelligence.com>"]
66
license = "MIT"
77

88
[tool.poetry.dependencies]
9-
python = "^3.10"
9+
python = ">=3.10"
1010

1111
[tool.poetry.dev-dependencies]
1212
flake8 = "^6.0.0"

0 commit comments

Comments
 (0)