Update Python version and dependencies in tag-uploads workflow#625
Open
Devansh-567 wants to merge 1 commit into
Open
Update Python version and dependencies in tag-uploads workflow#625Devansh-567 wants to merge 1 commit into
Devansh-567 wants to merge 1 commit into
Conversation
Signed-off-by: Devansh-567 <devansh.jay.singh@gmail.com>
Devansh-567
force-pushed
the
small_maintenance
branch
from
July 15, 2026 10:37
4ba5aeb to
f800b1a
Compare
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.
Summary
Small maintenance PR bumping stale CI and Python packaging version floors. No functional/behavioral changes, versions only.
Changes
1.
.github/workflows/tag-uploads.ymlactions/setup-python@v3=actions/setup-python@v5v3runs on the deprecated Node16 runtime, which GitHub Actions now flags with deprecation warnings on every run.v5is already what the rest of the ecosystem (and most other actions in this repo) use, so this just brings thepublish-to-pypijob in line.2.
py/setup.cfgpython_requires = >=3.6=>=3.8Python 3.6 reached end-of-life in December 2021 and isn't installable on current GitHub-hosted runner images. The declared floor was implying support that doesn't actually exist in practice.
3.8reflects the oldest version that's realistically still testable/installable today.protobuf >= 3.6.1=protobuf >= 4.21.6grpcio >= 1.17.2=grpcio >= 1.49.1Both floors were set years behind what the package is actually built and tested against. Raising them to versions that are actually exercised in CI avoids advertising compatibility that isn't real and avoids users pinning ancient, insecure versions based on the stated minimum.