diff --git a/eland/_version.py b/eland/_version.py index da4246b..e144544 100644 --- a/eland/_version.py +++ b/eland/_version.py @@ -5,7 +5,7 @@ __title__ = "eland" __description__ = "Python elasticsearch client to analyse, explore and manipulate data that resides in elasticsearch." __url__ = "https://github.com/elastic/eland" -__version__ = "7.6.0a5" +__version__ = "7.7.0a1" __author__ = "Steve Dodson" __author_email__ = "steve.dodson@elastic.co" __maintainer__ = "Seth Michael Larson" diff --git a/requirements-dev.txt b/requirements-dev.txt index fb45e77..9f4a89d 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,4 +1,4 @@ -elasticsearch==7.7.0a2 +elasticsearch>=7.7 pandas>=1 matplotlib pytest>=5.2.1 diff --git a/requirements.txt b/requirements.txt index 708e6aa..3b229a4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -elasticsearch==7.7.0a2 +elasticsearch>=7.7 pandas>=1 matplotlib diff --git a/setup.py b/setup.py index 368fba8..9932c12 100644 --- a/setup.py +++ b/setup.py @@ -175,7 +175,7 @@ setup( classifiers=CLASSIFIERS, keywords="elastic eland pandas python", 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", extras_require={ "xgboost": ["xgboost>=0.90,<2"],