| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 89d6913 commit b21c1d4
6 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -369,14 +369,6 @@ replacements: | |||
| 369 | 369 | count: 1 | |
| 370 | 370 | ||
| 371 | 371 | ||
| 372 | - # --- FIX: Restore pubsub-specific grpcio bound --- | ||
| 373 | - - paths: | ||
| 374 | - - "packages/google-cloud-pubsub/setup.py" | ||
| 375 | - before: '([ \t]+)"grpcio >= [0-9\.]+, < 2\.0\.0",\n' | ||
| 376 | - after: |- | ||
| 377 | - \g<1>"grpcio >= 1.51.3, < 2.0.0; python_version < '3.14'", # https://github.com/googleapis/python-pubsub/issues/609 | ||
| 378 | - count: 1 | ||
| 379 | - | ||
| 380 | 372 | # --- FIX: Restore missing dependencies, extras, and url dynamically --- | |
| 381 | 373 | - paths: | |
| 382 | 374 | - "packages/google-cloud-pubsub/setup.py" | |
@@ -530,8 +522,8 @@ replacements: | |||
| 530 | 522 | ||
| 531 | 523 | - paths: | |
| 532 | 524 | - "packages/google-cloud-pubsub/setup.py" | |
| 533 | - before: '"grpcio-status >= 1\.44\.0",' | ||
| 534 | - after: '"grpcio-status >= 1.51.3",' | ||
| 525 | + before: '([ \t]+)"grpcio >= [0-9\.]+, < 2\.0\.0",\n(?:[ \t]*)"grpcio >= 1\.75\.1, < 2\.0\.0; python_version >= ''3\.14''",\n' | ||
| 526 | + after: |- | ||
| 527 | + \g<1>"grpcio >= 1.51.3, < 2.0.0; python_version < '3.14'", | ||
| 528 | + \g<1>"grpcio >= 1.75.1, < 2.0.0; python_version >= '3.14'", | ||
| 535 | 529 | count: 1 | |
| 536 | - | ||
| 537 | - | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1659,7 +1659,6 @@ libraries: | |||
| 1659 | 1659 | version: 2.38.0 | |
| 1660 | 1660 | apis: | |
| 1661 | 1661 | - path: google/pubsub/v1 | |
| 1662 | - skip_generate: true | ||
| 1663 | 1662 | python: | |
| 1664 | 1663 | library_type: GAPIC_COMBO | |
| 1665 | 1664 | opt_args_by_api: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -62,14 +62,15 @@ Supported Python Versions | |||
| 62 | 62 | Our client libraries are compatible with all current `active`_ and `maintenance`_ versions of | |
| 63 | 63 | Python. | |
| 64 | 64 | ||
| 65 | - Python >= 3.9, including 3.14 | ||
| 65 | + Python >= 3.10, including 3.14 | ||
| 66 | 66 | ||
| 67 | 67 | .. _active: https://devguide.python.org/devcycle/#in-development-main-branch | |
| 68 | 68 | .. _maintenance: https://devguide.python.org/devcycle/#maintenance-branches | |
| 69 | 69 | ||
| 70 | 70 | Unsupported Python Versions | |
| 71 | 71 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
| 72 | - Python <= 3.8 | ||
| 72 | + Python <= 3.9 | ||
| 73 | + | ||
| 73 | 74 | ||
| 74 | 75 | If you are using an `end-of-life`_ | |
| 75 | 76 | version of Python, we recommend that you update as soon as possible to an actively supported version. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -62,14 +62,15 @@ Supported Python Versions | |||
| 62 | 62 | Our client libraries are compatible with all current `active`_ and `maintenance`_ versions of | |
| 63 | 63 | Python. | |
| 64 | 64 | ||
| 65 | - Python >= 3.9, including 3.14 | ||
| 65 | + Python >= 3.10, including 3.14 | ||
| 66 | 66 | ||
| 67 | 67 | .. _active: https://devguide.python.org/devcycle/#in-development-main-branch | |
| 68 | 68 | .. _maintenance: https://devguide.python.org/devcycle/#maintenance-branches | |
| 69 | 69 | ||
| 70 | 70 | Unsupported Python Versions | |
| 71 | 71 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
| 72 | - Python <= 3.8 | ||
| 72 | + Python <= 3.9 | ||
| 73 | + | ||
| 73 | 74 | ||
| 74 | 75 | If you are using an `end-of-life`_ | |
| 75 | 76 | version of Python, we recommend that you update as soon as possible to an actively supported version. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -26,3 +26,6 @@ filterwarnings = | |||
| 26 | 26 | ignore:You are using a non-supported Python version \(([\d\.]+)\)\. Google will not post any further updates to google\.api_core.*:FutureWarning | |
| 27 | 27 | # These google library EOL warnings for Python versions don't matter for the purposes of a test. | |
| 28 | 28 | ignore::FutureWarning:google.*: | |
| 29 | + # Suppress SelectableGroups deprecation warning from older dependencies under Python 3.11+ | ||
| 30 | + ignore:.*SelectableGroups dict interface is deprecated:DeprecationWarning | ||
| 31 | + | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -43,7 +43,8 @@ | |||
| 43 | 43 | # Exclude incompatible versions of `google-auth` | |
| 44 | 44 | # See https://github.com/googleapis/google-cloud-python/issues/12364 | |
| 45 | 45 | "google-auth >= 2.14.1, <3.0.0,!=2.24.0,!=2.25.0", | |
| 46 | - "grpcio >= 1.51.3, < 2.0.0; python_version < '3.14'", # https://github.com/googleapis/python-pubsub/issues/609 "grpcio >= 1.75.1, < 2.0.0; python_version >= '3.14'", | ||
| 46 | + "grpcio >= 1.51.3, < 2.0.0; python_version < '3.14'", | ||
| 47 | + "grpcio >= 1.75.1, < 2.0.0; python_version >= '3.14'", | ||
| 47 | 48 | "proto-plus >= 1.22.3, <2.0.0", | |
| 48 | 49 | "proto-plus >= 1.25.0, <2.0.0; python_version >= '3.13'", | |
| 49 | 50 | "protobuf >= 4.25.8, < 8.0.0", | |
| Back | FazBrowse Home | New Git URL |
0 commit comments