-
Notifications
You must be signed in to change notification settings - Fork 33
[CHORE] enforce python version compatibility #408
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,7 +8,7 @@ jobs: | |
| run-tests: | ||
| strategy: | ||
| matrix: | ||
| python: ["3.10", "3.11", "3.12"] | ||
| python: ["3.10", "3.11", "3.12", "3.13", "3.14"] | ||
| os: [ubuntu-latest, macos-latest] | ||
|
Comment on lines
10
to
12
|
||
| runs-on: ${{ matrix.os }} | ||
| env: | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
cat -n .github/workflows/run-tests.yml | head -20Repository: InjectiveLabs/sdk-python
Length of output: 624
🏁 Script executed:
Repository: InjectiveLabs/sdk-python
Length of output: 435
CI matrix includes unsupported Python versions—Poetry install will fail for 3.13 and 3.14
Line 11 tests Python 3.13 and 3.14, but
pyproject.tomlrestricts support topython = ">=3.10,<3.13". Thepoetry installstep will fail for those two jobs on both OS runners.Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents