Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.8k
feat(storage): drop Python 3.7-3.9 support and regenerate#17178
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| # -*- coding: utf-8 -*- | ||
| # Copyright 2025 Google LLC | ||
| # Copyright 2026 Google LLC | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| @@ -31,7 +31,6 @@ | ||
| LINT_PATHS.append("samples") | ||
| ALL_PYTHON = [ | ||
| "3.9", | ||
| "3.10", | ||
| "3.11", | ||
| "3.12", | ||
| @@ -494,7 +493,6 @@ def docs(session): | ||
| shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True) | ||
| session.run( | ||
| "sphinx-build", | ||
| "-W", # warnings as errors | ||
chalmerlowe marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| "-T", # show full traceback on exception | ||
| "-N", # no colors | ||
| "-b", | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,20 @@ | ||
| # -*- coding: utf-8 -*- | ||
| # This constraints file is required for unit tests. | ||
| # List all library dependencies and extras in this file. | ||
| google-auth | ||
| # This constraints file is used to check that lower bounds | ||
| # are correct in setup.py | ||
| # List all library dependencies and extras in this file, | ||
| # pinning their versions to their lower bounds. | ||
| # For example, if setup.py has "google-cloud-foo >= 1.14.0, < 2.0.0", | ||
| # then this file should have google-cloud-foo==1.14.0 | ||
| google-auth==2.26.1 | ||
| # cryptography is a direct dependency of google-auth | ||
| cryptography | ||
| google-api-core | ||
| google-cloud-core | ||
| google-resumable-media | ||
| grpcio | ||
| requests | ||
| google-crc32c | ||
| protobuf | ||
| opentelemetry-api | ||
| cryptography==38.0.0 | ||
| google-api-core==2.27.0 | ||
| google-cloud-core==2.4.2 | ||
| google-resumable-media==2.7.2 | ||
| grpcio==1.44.0 | ||
| grpcio-status==1.44.0 | ||
| proto-plus==1.22.3 | ||
| protobuf==4.25.8 | ||
| grpc-google-iam-v1==0.14.0 | ||
| opentelemetry-api==1.1.0 | ||
| requests==2.22.0 | ||
| google-crc32c==1.6.0 |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.