From 3e9ae989ae7db16bb9cd93e6730a1527e224945ea29a5b5e3c3b0f00cf74f6b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=C3=A9ta=20Machov=C3=A1?= Date: Wed, 6 Jan 2021 14:16:09 +0000 Subject: [PATCH] Accepting request 860736 from home:buschmann23:branches:devel:languages:python - Update to 1.24.0 * add Python 3.9 support, drop Python 3.5 support (gh#googleapis/google-auth-library-python#654) * avoid losing the original '_include_email' parameter in impersonated credentials (gh#googleapis/google-auth-library-python#626) - from version 1.23.0 * Add custom scopes for access tokens from the metadata service (gh#googleapis/google-auth-library-python#633) * remove checks for ancient versions of Cryptography - from version 1.22.1 * move aiohttp to extra as it is currently internal surface (gh#googleapis/google-auth-library-python#619) - from version 1.22.0 * add asyncio based auth flow (gh#googleapis/google-auth-library-python#612) - from version 1.21.3 * fix expiry for to_json() (gh#googleapis/google-auth-library-python#589) - Skip build for python2 as it is not supported anymore and unit tests can not be run because of unsatisfiable dependencies (mock >= 3.6) - Add urllib3 to the build requirements needed for testing and remove cryptography OBS-URL: https://build.opensuse.org/request/show/860736 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-google-auth?expand=0&rev=28 --- google-auth-1.21.2.tar.gz | 3 --- google-auth-1.24.0.tar.gz | 3 +++ python-google-auth.changes | 26 ++++++++++++++++++++++++++ python-google-auth.spec | 20 ++++++++++++-------- 4 files changed, 41 insertions(+), 11 deletions(-) delete mode 100644 google-auth-1.21.2.tar.gz create mode 100644 google-auth-1.24.0.tar.gz diff --git a/google-auth-1.21.2.tar.gz b/google-auth-1.21.2.tar.gz deleted file mode 100644 index 115e63a..0000000 --- a/google-auth-1.21.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7084c50c03f7a8a5696ef4500e65df0c525a0f6909f3c70b9ee65900a230c755 -size 108685 diff --git a/google-auth-1.24.0.tar.gz b/google-auth-1.24.0.tar.gz new file mode 100644 index 0000000..5f17467 --- /dev/null +++ b/google-auth-1.24.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b0e026b412a0ad096e753907559e4bdb180d9ba9f68dd9036164db4fdc4ad2e +size 120351 diff --git a/python-google-auth.changes b/python-google-auth.changes index 066d271..f4d3ad9 100644 --- a/python-google-auth.changes +++ b/python-google-auth.changes @@ -1,3 +1,29 @@ +------------------------------------------------------------------- +Wed Jan 6 13:16:24 UTC 2021 - Matthias Fehring + +- Update to 1.24.0 + * add Python 3.9 support, drop Python 3.5 support + (gh#googleapis/google-auth-library-python#654) + * avoid losing the original '_include_email' parameter in impersonated + credentials (gh#googleapis/google-auth-library-python#626) +- from version 1.23.0 + * Add custom scopes for access tokens from the metadata service + (gh#googleapis/google-auth-library-python#633) + * remove checks for ancient versions of Cryptography +- from version 1.22.1 + * move aiohttp to extra as it is currently internal surface + (gh#googleapis/google-auth-library-python#619) +- from version 1.22.0 + * add asyncio based auth flow + (gh#googleapis/google-auth-library-python#612) +- from version 1.21.3 + * fix expiry for to_json() + (gh#googleapis/google-auth-library-python#589) +- Skip build for python2 as it is not supported anymore and unit tests + can not be run because of unsatisfiable dependencies (mock >= 3.6) +- Add urllib3 to the build requirements needed for testing and remove + cryptography + ------------------------------------------------------------------- Wed Sep 23 13:05:40 UTC 2020 - Dirk Mueller diff --git a/python-google-auth.spec b/python-google-auth.spec index 1e3b94a..8500744 100644 --- a/python-google-auth.spec +++ b/python-google-auth.spec @@ -1,7 +1,7 @@ # # spec file for package python-google-auth # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,30 +16,34 @@ # +%define skip_python2 1 + %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-google-auth -Version: 1.21.2 +Version: 1.24.0 Release: 0 Summary: Google Authentication Library License: Apache-2.0 URL: https://github.com/GoogleCloudPlatform/google-auth-library-python Source: https://files.pythonhosted.org/packages/source/g/google-auth/google-auth-%{version}.tar.gz -BuildRequires: %{python_module Flask} BuildRequires: %{python_module cachetools >= 2.0.0} -BuildRequires: %{python_module cryptography} +BuildRequires: %{python_module pyasn1-modules >= 0.2.1} +BuildRequires: %{python_module rsa >= 3.1.4} +BuildRequires: %{python_module setuptools >= 40.3.0} +BuildRequires: %{python_module six >= 1.9.0} +# START TESTING SECTION +BuildRequires: %{python_module Flask} BuildRequires: %{python_module freezegun} BuildRequires: %{python_module mock} BuildRequires: %{python_module oauth2client-gce} BuildRequires: %{python_module oauth2client} BuildRequires: %{python_module pyOpenSSL} -BuildRequires: %{python_module pyasn1-modules >= 0.2.1} BuildRequires: %{python_module pytest-localserver} BuildRequires: %{python_module pytest} BuildRequires: %{python_module requests} BuildRequires: %{python_module responses} -BuildRequires: %{python_module rsa >= 3.1.4} -BuildRequires: %{python_module setuptools >= 40.3.0} -BuildRequires: %{python_module six >= 1.9.0} +BuildRequires: %{python_module urllib3} +# END TESTING SECTION BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-cachetools >= 2.0.0