From 98bc3b90a57ee4da023b68e84216e46992fe3ee7 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Fri, 1 Apr 2022 01:10:25 +0000 Subject: [PATCH 1/3] chore(v0): release 0.3.1 --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 688c7fd..84517e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [0.3.1](https://github.com/googleapis/python-deploy/compare/v0.3.0...v0.3.1) (2022-04-01) + + +### Bug Fixes + +* **deps:** require google-api-core >= 1.31.5, >= 2.3.2 on v0 release ([#54](https://github.com/googleapis/python-deploy/issues/54)) ([9e9c713](https://github.com/googleapis/python-deploy/commit/9e9c71351ab7ea72843f2a732ae17f6904c4ff65)) + ## [0.3.0](https://www.github.com/googleapis/python-deploy/compare/v0.2.0...v0.3.0) (2021-10-18) diff --git a/setup.py b/setup.py index 462c759..5136435 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ name = "google-cloud-deploy" description = "Google Cloud Deploy API client library" -version = "0.3.0" +version = "0.3.1" url = "https://github.com/googleapis/python-deploy" release_status = "Development Status :: 4 - Beta" dependencies = [ From a8c7da053f367fc561c2764e8448cda6b6417d9c Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 19 May 2022 14:44:50 +0000 Subject: [PATCH 2/3] chore: update constraints file --- testing/constraints-3.6.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/testing/constraints-3.6.txt b/testing/constraints-3.6.txt index 4e48a3a..e01269f 100644 --- a/testing/constraints-3.6.txt +++ b/testing/constraints-3.6.txt @@ -4,7 +4,6 @@ # Pin the version to the lower bound. # e.g., if setup.py has "google-cloud-foo >= 1.14.0, < 2.0.0dev", # Then this file should have google-cloud-foo==1.14.0 -google-api-core==1.27.0 +google-api-core==1.31.5 proto-plus==1.15.0 packaging==14.3 -google-auth==1.24.0 # TODO: remove when google-auth>=1.25.0 is transitively required through google-api-core \ No newline at end of file From 10e4deff208d46cf9327951ebd8214fc151c3389 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 19 May 2022 14:45:17 +0000 Subject: [PATCH 3/3] ci: fix lint build --- noxfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index 2bb4cf7..aff5b72 100644 --- a/noxfile.py +++ b/noxfile.py @@ -55,7 +55,7 @@ def lint(session): Returns a failure if the linters find linting errors or sufficiently serious code quality issues. """ - session.install("flake8", BLACK_VERSION) + session.install("flake8", BLACK_VERSION, "click<8.1") session.run( "black", "--check", *BLACK_PATHS, ) @@ -65,7 +65,7 @@ def lint(session): @nox.session(python=DEFAULT_PYTHON_VERSION) def blacken(session): """Run black. Format code to uniform standard.""" - session.install(BLACK_VERSION) + session.install(BLACK_VERSION, "click<8.1") session.run( "black", *BLACK_PATHS, )