|
29 | 29 | version = None |
30 | 30 |
|
31 | 31 | with open(os.path.join(package_root, "google/cloud/bigtable/gapic_version.py")) as fp: |
32 | | - version_candidates = re.findall(r"(?<=\")\d+.\d+.\d+(?=\")", fp.read()) |
| 32 | + version_candidates = re.findall( |
| 33 | + r"(?<=\")\d+\.\d+\.\d+[^\"\s]*(?=\")", |
| 34 | + fp.read(), |
| 35 | + ) |
33 | 36 | assert len(version_candidates) == 1 |
34 | 37 | version = version_candidates[0] |
35 | 38 |
|
|
39 | 42 | release_status = "Development Status :: 5 - Production/Stable" |
40 | 43 |
|
41 | 44 | dependencies = [ |
42 | | - "google-api-core[grpc] >= 2.17.1, <3.0.0", |
| 45 | + "google-api-core[grpc] >= 2.24.2, <3.0.0", |
43 | 46 | # Exclude incompatible versions of `google-auth` |
44 | 47 | # See https://github.com/googleapis/google-cloud-python/issues/12364 |
45 | 48 | "google-auth >= 2.14.1, <3.0.0,!=2.24.0,!=2.25.0", |
46 | 49 | "grpcio >= 1.59.0, < 2.0.0", |
47 | 50 | "grpcio >= 1.75.1, < 2.0.0; python_version >= '3.14'", |
48 | | - "proto-plus >= 1.22.3, <2.0.0", |
49 | | - "proto-plus >= 1.25.0, <2.0.0; python_version >= '3.13'", |
50 | | - "protobuf >= 4.25.8, < 8.0.0", |
| 51 | + "proto-plus >= 1.26.1, <2.0.0", |
| 52 | + "protobuf >= 6.33.5, < 8.0.0", |
51 | 53 | "google-cloud-core >= 2.0.0, <3.0.0", |
52 | | - "grpc-google-iam-v1 >= 0.14.0, <1.0.0", |
| 54 | + "grpc-google-iam-v1 >= 0.14.2, <1.0.0", |
53 | 55 | "google-crc32c>=1.6.0, <2.0.0dev", |
54 | 56 | ] |
55 | 57 | extras = { |
|
0 commit comments