|
22 | 22 | # https://github.com/googleapis/google-cloud-python/issues/10566 |
23 | 23 | # is resolved. Once resolved, require google-api-core >=2.3.2. |
24 | 24 | "google-api-core >= 1.31.5, < 3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0", |
25 | | - "google-api-core >= 2.0.1, < 3.0.0", |
26 | 25 | "googleapis-common-protos >= 1.5.8, < 2.0.0", |
27 | 26 | # NOTE: Source code for grpcio and grpcio-status exist in the same |
28 | 27 | # grpc/grpc monorepo and thus these two dependencies should always |
|
32 | 31 | "proto-plus == 1.19.6", |
33 | 32 | "PyYAML >= 5.1, < 6.0", |
34 | 33 | "setuptools >= 40.3.0", |
35 | | - "protobuf >= 3.12.0, < 3.18.0", |
| 34 | + # Protobuf versions 3.18.* and 3.19.* are incompatible with this |
| 35 | + # library due to performance issues. See the following for more details: |
| 36 | + # https://github.com/protocolbuffers/protobuf/issues/9180 |
| 37 | + "protobuf >= 3.12.0, <= 3.20.0,!=3.18.*,!=3.19.*", |
36 | 38 | ] |
37 | 39 |
|
38 | 40 | with io.open("README.rst", "r", encoding="utf-8") as readme_file: |
|
41 | 43 |
|
42 | 44 | setup( |
43 | 45 | name="google-ads", |
44 | | - version="15.1.0", |
| 46 | + version="15.1.1", |
45 | 47 | author="Google LLC", |
46 | 48 | |
47 | 49 | classifiers=[ |
|
58 | 60 | python_requires=">=3.7", |
59 | 61 | long_description=long_description, |
60 | 62 | install_requires=install_requires, |
61 | | - extras_require={ |
62 | | - "tests": [ |
63 | | - "nox >= 2020.12.31, < 2022.6", |
64 | | - ] |
65 | | - }, |
| 63 | + extras_require={"tests": ["nox >= 2020.12.31, < 2022.6",]}, |
66 | 64 | license="Apache 2.0", |
67 | 65 | packages=find_packages( |
68 | 66 | exclude=["examples", "examples.*", "tests", "tests.*"] |
|
0 commit comments