17
0
2023-12-17 20:02:18 +00:00
committed by Git OBS Bridge
parent 67b9d1c505
commit 95b5e751ff
4 changed files with 20 additions and 24 deletions

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:37b80273c8d7eee1ae816b3a20ae43585ea50506cb0e60f3cf5be5f87f1373cb
size 35242

Binary file not shown.

View File

@@ -1,12 +1,3 @@
-------------------------------------------------------------------
Sat Dec 16 19:44:57 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 2.4.1:
* Fix regression with `google.cloud._helpers._NOW` (#266)
* Add support for Python 3.12 (#256)
* Introduce compatibility with native namespace packages (#260)
- switch to new python stack for SLE15
-------------------------------------------------------------------
Tue Jul 18 10:00:41 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
@@ -48,7 +39,7 @@ Tue Aug 3 00:43:52 UTC 2021 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 1.7.2:
* pass kwargs through in 'from_service_account_json' (#109) (efc4bbf)
* add 'Client.close' (#100) (7387fc8)
* add 'Client.from_service_account_info' factory (#54) (7e59360)
* add 'Client.from_service_account_info' factory (#54) (7e59360)
- Actually use %pytest macro for testing
-------------------------------------------------------------------
@@ -62,7 +53,7 @@ Tue Apr 6 07:45:12 UTC 2021 - Dirk Müller <dmueller@suse.com>
* avoid using 'pkg_resources' to determine version
* handle query_params tuples in JSONConnection.build_api_url
* add quota_project, credentials file, and scopes options
* add support for Python 3.8
* add support for Python 3.8
-------------------------------------------------------------------
Mon Apr 20 11:50:58 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
@@ -90,7 +81,7 @@ Thu May 16 18:06:22 UTC 2019 - kwu@suse.com
* Remove classifier for Python 3.4 for end-of-life. (#7535)
* Refactor client_info support. (#7849)
* Update dep on api_core >= 1.11.0. (#7986)
* Updated client library documentation URLs. (#7307)
* Updated client library documentation URLs. (#7307)
-------------------------------------------------------------------
Mon Feb 18 03:39:34 UTC 2019 - John Vandenberg <jayvdb@gmail.com>

View File

@@ -16,27 +16,33 @@
#
%{?sle15_python_module_pythons}
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without python2
Name: python-google-cloud-core
Version: 2.4.1
Version: 2.3.3
Release: 0
Summary: Google Cloud API client core library
License: Apache-2.0
URL: https://github.com/googleapis/python-cloud-core
Source: https://files.pythonhosted.org/packages/source/g/google-cloud-core/google-cloud-core-%{version}.tar.gz
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module google-api-core >= 1.31.6}
BuildRequires: %{python_module google-auth >= 1.25.0}
BuildRequires: %{python_module grpcio >= 1.38.0}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module wheel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-google-api-core >= 1.31.6
Requires: python-google-auth >= 1.25.0
Requires: python-six >= 1.12.0
Recommends: python-grpcio >= 1.38.0
BuildArch: noarch
%if %{with python2}
BuildRequires: python-futures
%endif
%ifpython2
Requires: python-futures >= 3.2.0
%endif
%python_subpackages
%description
@@ -49,10 +55,10 @@ common helpers (e.g. base ``Client`` classes) used by all of the
%setup -q -n google-cloud-core-%{version}
%build
%pyproject_wheel
%python_build
%install
%pyproject_install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -62,7 +68,6 @@ export PYTEST_ADDOPTS="--import-mode=importlib"
%files %{python_files}
%license LICENSE
%doc README.rst
%{python_sitelib}/google/cloud
%{python_sitelib}/google_cloud_core-%{version}.dist-info
%{python_sitelib}/*
%changelog