From cbd80e85d218f70c0fce4e7d613cef664a30ebe3 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Wed, 13 Jul 2022 12:52:43 -0400 Subject: [PATCH 1/2] fix(deps): require google-api-core>=1.32.0,>=2.8.0 (#198) * fix(deps): require google-api-core>=1.32.0,>=2.8.0 * chore: update constraints --- setup.py | 2 +- testing/constraints-3.7.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 301810d..44751e6 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ platforms="Posix; MacOS X; Windows", include_package_data=True, install_requires=( - "google-api-core[grpc] >= 2.8.0, <3.0.0dev", + "google-api-core[grpc] >= 1.32.0, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*", "proto-plus >= 1.15.0, <2.0.0dev", "protobuf >= 3.19.0, <4.0.0dev", ), diff --git a/testing/constraints-3.7.txt b/testing/constraints-3.7.txt index b66105b..317c02d 100644 --- a/testing/constraints-3.7.txt +++ b/testing/constraints-3.7.txt @@ -5,6 +5,6 @@ # # e.g., if setup.py has "foo >= 1.14.0, < 2.0.0dev", # Then this file should have foo==1.14.0 -google-api-core==2.8.0 +google-api-core==1.32.0 proto-plus==1.15.0 protobuf==3.19.0 From f2886c5b7e4a5a04c74dd6490ca5f8d0a35bb777 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Wed, 13 Jul 2022 13:02:38 -0400 Subject: [PATCH 2/2] chore(main): release 1.7.1 (#199) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aedfd23..103a5a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.7.1](https://github.com/googleapis/python-workflows/compare/v1.7.0...v1.7.1) (2022-07-13) + + +### Bug Fixes + +* **deps:** require google-api-core>=1.32.0,>=2.8.0 ([#198](https://github.com/googleapis/python-workflows/issues/198)) ([cbd80e8](https://github.com/googleapis/python-workflows/commit/cbd80e85d218f70c0fce4e7d613cef664a30ebe3)) + ## [1.7.0](https://github.com/googleapis/python-workflows/compare/v1.6.3...v1.7.0) (2022-07-06) diff --git a/setup.py b/setup.py index 44751e6..fcabde6 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ import os import setuptools # type: ignore -version = "1.7.0" +version = "1.7.1" package_root = os.path.abspath(os.path.dirname(__file__))