This repository was archived by the owner on Mar 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
tests: add testing for Python 3.14 Pre-release #2344
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
70974c2
build: clean up github action
parthea 13f3a52
add python 3.14
parthea d402180
Merge branch 'main' into cleanup-action
parthea d0775d2
add constraints file
parthea 7e02b53
See https://github.com/googleapis/gapic-generator-python/issues/2446
parthea 5a4c204
fix build
parthea d175f0b
lint
parthea File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| {% from '_pypi_packages.j2' import pypi_packages %} | ||
| # We use the constraints file for the latest Python version | ||
| # (currently this file) to check that the latest | ||
| # major versions of dependencies are supported in setup.py. | ||
| # List all library dependencies and extras in this file. | ||
| # Require the latest major version be installed for each dependency. | ||
| # e.g., if setup.py has "google-cloud-foo >= 1.14.0, < 2.0.0", | ||
| # Then this file should have google-cloud-foo>=1 | ||
| google-api-core>=2 | ||
| google-auth>=2 | ||
| proto-plus>=1 | ||
| protobuf>=6 | ||
| {% for package_tuple, package_info in pypi_packages.items() %} | ||
| {# Quick check to make sure `package_info.package_name` is not the package being generated so we don't circularly include this package in its own constraints file. #} | ||
| {% if api.naming.warehouse_package_name != package_info.package_name %} | ||
| {% if api.requires_package(package_tuple) %} | ||
| {{ package_info.package_name }}>={{ (package_info.upper_bound.split(".")[0] | int) - 1 }} | ||
| {% endif %} | ||
| {% endif %} | ||
| {% endfor %} |
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.