Skip to content
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

Introduce deprecation warning for python 3.7, google-api-core 1.x and protobuf 3.x #209

Closed
holtskinner opened this issue Nov 29, 2023 · 1 comment · Fixed by #241, #262 or #298
Closed
Assignees

Comments

@holtskinner
Copy link
Member

Python 3.7 is now unsupported in the python community. We should update the README to indicate that python 3.7 support will be dropped and also introduce a deprecation warning with the same information.

Similar to:

@holtskinner
Copy link
Member Author

holtskinner commented Dec 12, 2023

Note: When Python 3.7 support is dropped, this can be removed from all tests:

# try/except added for compatibility with python < 3.8
try:
    from unittest import mock
except ImportError:  # pragma: NO COVER
    import mock

Change to:

from unittest import mock

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment