-
Notifications
You must be signed in to change notification settings - Fork 203
Update GitHub workflows to Python 3.13 #194
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
base: main
Are you sure you want to change the base?
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 |
|---|---|---|
|
|
@@ -28,9 +28,9 @@ jobs: | |
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up Python | ||
| uses: actions/setup-python@v4 | ||
| uses: actions/setup-python@v6 | ||
| with: | ||
| python-version: '3.12' | ||
| python-version: '3.13' | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. NumPy 2.0.2 lacks Python 3.13 support in SDKHigh Severity The Additional Locations (2)
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it's fine, we can update it at later point |
||
|
|
||
| - name: Install and configure Poetry | ||
| uses: snok/install-poetry@v1 | ||
|
|
||


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.
NumPy 1.26.4 incompatible with Python 3.13 in charts
High Severity
The
chart_data_extractorproject depends onnumpy = "^1.26.4"(constrained to<2.0.0), but NumPy 1.26.4 hasRequires-Python: <3.13,>=3.9and is the last 1.x release. Upgrading Python to 3.13 makes it impossible to installnumpywithin that version constraint, sopoetry installwill fail. Thepyproject.tomlconstraint needs to be updated to allow NumPy 2.x before switching to Python 3.13.Additional Locations (1)
.github/workflows/release.yml#L130-L131There 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.
we will upgrade it