Accepting request 781062 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/781062
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-elasticsearch?expand=0&rev=8
This commit is contained in:
Dominique Leuenberger 2020-03-05 22:17:37 +00:00 committed by Git OBS Bridge
commit 982501db3b
4 changed files with 20 additions and 9 deletions

View File

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

3
7.5.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6db1ff1b3742b016a8bb737e81a5d4da10a9f554a57746890ae5832a6fad2b32
size 116602

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Mar 2 15:39:59 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
- Update to 7.5.1
* All API is now auto generated
* deprecated the .xpack namespace
* Update client to support ES 7.5 APIs
* Fix sniffing with http.publish_host
* Fix request_timeout for indices APIs
* Allow access to x-pack features without xpack namespace
* Fix verify_certs=False
-------------------------------------------------------------------
Fri Sep 13 08:03:22 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package python-elasticsearch
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -19,16 +19,18 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without test
Name: python-elasticsearch
Version: 7.0.4
Version: 7.5.1
Release: 0
Summary: Python client for Elasticsearch
License: Apache-2.0
Group: Development/Languages/Python
Url: https://github.com/elastic/elasticsearch-py
URL: https://github.com/elastic/elasticsearch-py
Source: https://github.com/elastic/elasticsearch-py/archive/%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-urllib3 >= 1.21.1
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module coverage}
BuildRequires: %{python_module mock}
@ -38,9 +40,6 @@ BuildRequires: %{python_module pyaml}
BuildRequires: %{python_module requests >= 2.0.0}
BuildRequires: %{python_module urllib3 >= 1.21.1}
%endif
Requires: python-urllib3 >= 1.21.1
BuildArch: noarch
%python_subpackages
%description