1
0

Accepting request 708266 from home:mcalabkova:branches:devel:languages:python

- update to 7.0.2
  * Add connection parameter for Elastic Cloud cloud_id
  * ML client uses client object for _bulk_body requests
  * Blocking pool must fit thread_count
  * Update client to support missing ES 7 API's and query params.
  * Removed deprecated option update_all_types
  * Using insecure SSL configuration (verify_cert=False) raises a 
    warning, this can be not showed with ssl_show_warn=False
  * Add support for 7.x api's in Elasticsearch

OBS-URL: https://build.opensuse.org/request/show/708266
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-elasticsearch?expand=0&rev=15
This commit is contained in:
Tomáš Chvátal
2019-06-07 10:24:23 +00:00
committed by Git OBS Bridge
parent b890756a7a
commit e8aabf1722
4 changed files with 21 additions and 8 deletions

View File

@@ -17,20 +17,20 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
# Test files not included in source archive
%bcond_with test
%bcond_without test
Name: python-elasticsearch
Version: 6.3.1
Version: 7.0.2
Release: 0
Summary: Python client for Elasticsearch
License: Apache-2.0
Group: Development/Languages/Python
Url: https://github.com/elastic/elasticsearch-py
Source: https://files.pythonhosted.org/packages/source/e/elasticsearch/elasticsearch-%{version}.tar.gz
Source: https://github.com/elastic/elasticsearch-py/archive/%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
%if %{with test}
BuildRequires: %{python_module coverage}
BuildRequires: %{python_module mock}
BuildRequires: %{python_module nosexcover}
BuildRequires: %{python_module nose}
@@ -49,7 +49,7 @@ ground for all Elasticsearch-related code in Python; because of this it tries
to be opinion-free and very extendable.
%prep
%setup -q -n elasticsearch-%{version}
%setup -q -n elasticsearch-py-%{version}
rm README.rst
%build