Upgrade to elasticsearch-py v7.7

This commit is contained in:
Seth Michael Larson 2020-05-14 10:07:10 -05:00 committed by GitHub
parent d2047aa51a
commit 6ca41585e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@
__title__ = "eland" __title__ = "eland"
__description__ = "Python elasticsearch client to analyse, explore and manipulate data that resides in elasticsearch." __description__ = "Python elasticsearch client to analyse, explore and manipulate data that resides in elasticsearch."
__url__ = "https://github.com/elastic/eland" __url__ = "https://github.com/elastic/eland"
__version__ = "7.6.0a5" __version__ = "7.7.0a1"
__author__ = "Steve Dodson" __author__ = "Steve Dodson"
__author_email__ = "steve.dodson@elastic.co" __author_email__ = "steve.dodson@elastic.co"
__maintainer__ = "Seth Michael Larson" __maintainer__ = "Seth Michael Larson"

View File

@ -1,4 +1,4 @@
elasticsearch==7.7.0a2 elasticsearch>=7.7
pandas>=1 pandas>=1
matplotlib matplotlib
pytest>=5.2.1 pytest>=5.2.1

View File

@ -1,3 +1,3 @@
elasticsearch==7.7.0a2 elasticsearch>=7.7
pandas>=1 pandas>=1
matplotlib matplotlib

View File

@ -175,7 +175,7 @@ setup(
classifiers=CLASSIFIERS, classifiers=CLASSIFIERS,
keywords="elastic eland pandas python", keywords="elastic eland pandas python",
packages=find_packages(include=["eland", "eland.*"]), packages=find_packages(include=["eland", "eland.*"]),
install_requires=["elasticsearch==7.7.0a2", "pandas>=1", "matplotlib", "numpy"], install_requires=["elasticsearch>=7.7", "pandas>=1", "matplotlib", "numpy"],
python_requires=">=3.6", python_requires=">=3.6",
extras_require={ extras_require={
"xgboost": ["xgboost>=0.90,<2"], "xgboost": ["xgboost>=0.90,<2"],