SG-42305 Packaging for v3.10.2#448
Open
jay-roe wants to merge 15 commits into
Open
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #448 +/- ##
=======================================
Coverage 78.76% 78.76%
=======================================
Files 7 7
Lines 1851 1851
=======================================
Hits 1458 1458
Misses 393 393
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
julien-lang
reviewed
Jun 26, 2026
Member
There was a problem hiding this comment.
Can you move this script to the developer folder, please like in tk-core.
And same for update_httplib2.py if that makes sense.
jay-roe
commented
Jun 26, 2026
Comment on lines
+96
to
+100
| # Older releases had python3/httplib2/; newer ones have httplib2/ at root. | ||
| python3_path = root_folder / "python3" / "httplib2" | ||
| flat_path = root_folder / "httplib2" | ||
| src_path = python3_path if python3_path.exists() else flat_path | ||
| utilities.copy_folder(str(src_path), httplib2_dir) |
Contributor
Author
There was a problem hiding this comment.
When I moved the scripts I tested them out to make sure they are still usable, and found that since v0.30., httplib2 no longer has a python3 folder and just has it at root.
I didn't upgrade httplib2 here to not add too much to this PR.
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.
This pull request prepares for the next release of the Flow Production Tracking Python API by updating the version to 3.10.2 and updates the bundled
certifipackage to address version consistency and potential security improvements across the Python API. The changes ensure that the latest version ofcertifi(2026.6.17) is used throughout the codebase.Dependency update:
certifito version2026.6.17inshotgun_api3/lib/requirements.txtand the internal version reference inshotgun_api3/lib/certifi/__init__.pyfor consistency and security.Added utility script:
update_certifi.pyto facilitate updating the certifi package, following the similar pattern inupdate_httplib2.py. (In the future, we may want to run this automatically whencertifireleases a new version)