chore: python requirements updated to latest versions#1208
Draft
mcoliver wants to merge 2 commits intoAcademySoftwareFoundation:mainfrom
Draft
chore: python requirements updated to latest versions#1208mcoliver wants to merge 2 commits intoAcademySoftwareFoundation:mainfrom
mcoliver wants to merge 2 commits intoAcademySoftwareFoundation:mainfrom
Conversation
Signed-off-by: Michael Oliver <mcoliver@gmail.com>
set the proper python version for the venv creation Signed-off-by: Michael Oliver <mcoliver@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summarize your change.
the
requirements.txt.infile which installs packages during python builds had specific versions pinned that were in many cases over two years old. Things like certifi, requests, pip, cryptography, etc.. can and in some cases should be latest. Additionally PyOpenGL was a different version than the PyOpenGL_accelerate so that was synced.I also took this moment to place them in alphabetical order
Describe the reason for the change.
Many of those pinned packages lacked support for newer version of Python (eg python 3.14) and have received numerous security, features, and performance improvements in the last couple years.
Describe what you have tested and on which operating system.
macOS 26. Builds on 2024 and 2025
Add a list of changes, and note any that might need special attention during the review.
I considered not setting a version at all (always latest) or setting minimum versions rather than pinning a specific version, but opted to conform to the existing format.
If you feel differently for certain packages let me know and I'll make the changes. eg
certifi>=2026.2.25or justcertifiprobably make sense along with a few others.