From ff87f997be1a9f86fe1619107e12fb02aaccd8a7 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 14 Oct 2021 19:03:04 -0400 Subject: [PATCH 1/3] feat: add support for python 3.10 (#44) --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index dbb336f..0c1c0fb 100644 --- a/setup.py +++ b/setup.py @@ -69,6 +69,8 @@ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Operating System :: OS Independent", "Topic :: Internet", ], From 0719a50d5184da335a1b0e93d80e847d612746d7 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 14 Oct 2021 20:10:11 -0400 Subject: [PATCH 2/3] chore: delete owlbot.py (#45) Now that https://github.com/googleapis/synthtool/pull/1244 is merged, owlbot.py is no longer required in this repo. We can add owlbot.py back in the future if repository specific customizations are needed. --- .github/.OwlBot.lock.yaml | 2 +- docs/index.rst | 3 ++- owlbot.py | 41 --------------------------------------- 3 files changed, 3 insertions(+), 43 deletions(-) delete mode 100644 owlbot.py diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml index 7d98291..ba7b2f7 100644 --- a/.github/.OwlBot.lock.yaml +++ b/.github/.OwlBot.lock.yaml @@ -1,3 +1,3 @@ docker: image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest - digest: sha256:58f73ba196b5414782605236dd0712a73541b44ff2ff4d3a36ec41092dd6fa5b + digest: sha256:3728d8fd14daa46a96d04ce61c6451a3ac864dc48fb71eecbb4411f4a95618d4 diff --git a/docs/index.rst b/docs/index.rst index e1942ee..bf3e9d5 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -2,6 +2,7 @@ .. include:: multiprocessing.rst + API Reference ------------- .. toctree:: @@ -18,4 +19,4 @@ For a list of all ``google-cloud-dataflow-client`` releases: .. toctree:: :maxdepth: 2 - changelog \ No newline at end of file + changelog diff --git a/owlbot.py b/owlbot.py deleted file mode 100644 index 4aedefe..0000000 --- a/owlbot.py +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import synthtool as s -import synthtool.gcp as gcp -from synthtool.languages import python - -# ---------------------------------------------------------------------------- -# Copy the generated client from the owl-bot staging directory -# ---------------------------------------------------------------------------- - -default_version = "v1beta3" - -for library in s.get_staging_dirs(default_version): - s.move(library, excludes=["setup.py", "README.rst", "docs/index.rst"]) -s.remove_staging_dirs() - -# ---------------------------------------------------------------------------- -# Add templated files -# ---------------------------------------------------------------------------- - -templated_files = gcp.CommonTemplates().py_library(microgenerator=True) -python.py_samples(skip_readmes=True) -s.move(templated_files, excludes=[".coveragerc"]) # the microgenerator has a good coveragerc file - -# ---------------------------------------------------------------------------- -# Run blacken session -# ---------------------------------------------------------------------------- - -s.shell.run(["nox", "-s", "blacken"], hide_output=False) From 4843b2e3b6ddbc9ce2b1cdca37b731f64dfe39bb Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Mon, 18 Oct 2021 19:28:31 +0000 Subject: [PATCH 3/3] chore: release 0.3.0 (#46) :robot: I have created a release \*beep\* \*boop\* --- ## [0.3.0](https://www.github.com/googleapis/python-dataflow-client/compare/v0.2.0...v0.3.0) (2021-10-15) ### Features * add support for python 3.10 ([#44](https://www.github.com/googleapis/python-dataflow-client/issues/44)) ([ff87f99](https://www.github.com/googleapis/python-dataflow-client/commit/ff87f997be1a9f86fe1619107e12fb02aaccd8a7)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5269b7..87bd79b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.0](https://www.github.com/googleapis/python-dataflow-client/compare/v0.2.0...v0.3.0) (2021-10-15) + + +### Features + +* add support for python 3.10 ([#44](https://www.github.com/googleapis/python-dataflow-client/issues/44)) ([ff87f99](https://www.github.com/googleapis/python-dataflow-client/commit/ff87f997be1a9f86fe1619107e12fb02aaccd8a7)) + ## [0.2.0](https://www.github.com/googleapis/python-dataflow-client/compare/v0.1.5...v0.2.0) (2021-10-08) diff --git a/setup.py b/setup.py index 0c1c0fb..cd551f6 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ name = "google-cloud-dataflow-client" description = "Cloud Dataflow API client library" -version = "0.2.0" +version = "0.3.0" release_status = "Development Status :: 4 - Beta" url = "https://github.com/googleapis/python-dataflow-client" dependencies = [