From 314c4f17b419e7b2f25c4618b5c0be6157ae0cae Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 14 Oct 2021 19:06:05 -0400 Subject: [PATCH 1/3] feat: add support for python 3.10 (#48) --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 134d47c..eefba22 100644 --- a/setup.py +++ b/setup.py @@ -57,6 +57,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", "Topic :: Internet", "Topic :: Software Development :: Libraries :: Python Modules", ], From a344a664c6e20be3e8d8b50f09af38170d3aaf66 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Mon, 18 Oct 2021 11:05:17 -0400 Subject: [PATCH 2/3] chore: delete owlbot.py (#50) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: delete owlbot.py * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot --- .github/.OwlBot.lock.yaml | 2 +- noxfile.py | 2 +- owlbot.py | 35 ----------------------------------- 3 files changed, 2 insertions(+), 37 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/noxfile.py b/noxfile.py index f885c68..2bb4cf7 100644 --- a/noxfile.py +++ b/noxfile.py @@ -175,7 +175,7 @@ def cover(session): test runs (not system test runs), and then erases coverage data. """ session.install("coverage", "pytest-cov") - session.run("coverage", "report", "--show-missing", "--fail-under=99") + session.run("coverage", "report", "--show-missing", "--fail-under=100") session.run("coverage", "erase") diff --git a/owlbot.py b/owlbot.py deleted file mode 100644 index dae6b4e..0000000 --- a/owlbot.py +++ /dev/null @@ -1,35 +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. - - -"""This script is used to synthesize generated parts of this library.""" - -import os -import synthtool as s -import synthtool.gcp as gcp -from synthtool.languages import python - -common = gcp.CommonTemplates() - -default_version = "v1" - -for library in s.get_staging_dirs(default_version): - s.move(library, excludes=["setup.py", "README.rst", "docs/index.rst"]) - -s.remove_staging_dirs() - -templated_files = common.py_library(cov_level=99, microgenerator=True) - -s.move(templated_files, excludes=[".coveragerc"]) # microgenerator has a good .coveragerc file - -s.shell.run(["nox", "-s", "blacken"], hide_output=False) From 473b0ec24963c70a6a8d374a8ee1300c1663e041 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 19 Oct 2021 01:04:21 +0000 Subject: [PATCH 3/3] chore: release 1.1.0 (#49) :robot: I have created a release \*beep\* \*boop\* --- ## [1.1.0](https://www.github.com/googleapis/python-appengine-logging/compare/v1.0.0...v1.1.0) (2021-10-18) ### Features * add support for python 3.10 ([#48](https://www.github.com/googleapis/python-appengine-logging/issues/48)) ([314c4f1](https://www.github.com/googleapis/python-appengine-logging/commit/314c4f17b419e7b2f25c4618b5c0be6157ae0cae)) --- 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 ae257ca..cf4b7e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.1.0](https://www.github.com/googleapis/python-appengine-logging/compare/v1.0.0...v1.1.0) (2021-10-18) + + +### Features + +* add support for python 3.10 ([#48](https://www.github.com/googleapis/python-appengine-logging/issues/48)) ([314c4f1](https://www.github.com/googleapis/python-appengine-logging/commit/314c4f17b419e7b2f25c4618b5c0be6157ae0cae)) + ## [1.0.0](https://www.github.com/googleapis/python-appengine-logging/compare/v0.2.0...v1.0.0) (2021-10-12) diff --git a/setup.py b/setup.py index eefba22..d5d2d27 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ import os import setuptools # type: ignore -version = "1.0.0" +version = "1.1.0" package_root = os.path.abspath(os.path.dirname(__file__))