-
Notifications
You must be signed in to change notification settings - Fork 206
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
fix: Upgrade proto-plus to support Python 3.13 #1280
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
That's an interesting failure, I can't really see how it's related to my changes though 🤔 Maybe it's time to drop Python 3.7 and execute the test suite in 3.13 as well? |
Dropping Python 3.7 from presubmits implies that any issues / regressions in Python 3.7 would not be caught. Any issues / regressions in Python 3.7 would be considered a backward incompatible change. Backward incompatible changes are mostly discouraged, unless there is an exceptional reason - this isn't one of them |
Wait for googleapis/synthtool#2031 |
@parthea : Pip Freeze:
Repro Code:from google.cloud import pubsub_v1
print("Hello World") Confirmed that the repro code works for python version = 3.11:
Setup .py file with the proto-plus dependency updated
I still get an error with the above change:
So, this change does not seem to resolve the issue, although I see that it was applied as a fix for the other client libraries. Wanted to check if you know why this might be happening? |
This change should fix issue googleapis#1275
Issue solved with #1303 .Closing this. |
This change should fix issue #1275. A similar change has been proposed for googleapis/python-api-core#740.
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
Fixes #1275 🦕