From 4352e56174b77560d2f86801cb1ad32440bb2d32 Mon Sep 17 00:00:00 2001 From: Nick Lang Date: Tue, 19 Jun 2018 12:55:48 -0600 Subject: [PATCH] fixing max urllib3, updating authors --- .gitignore | 1 + setup.py | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3e8176d5..1f403364 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ test_elasticsearch/local.py docs/_build elasticsearch.egg-info .tox +.noseids dist *.egg coverage.xml diff --git a/setup.py b/setup.py index 9d4d98b0..ba79ef46 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ long_description = f.read().strip() f.close() install_requires = [ - 'urllib3<1.23,>=1.21.1', + 'urllib3>=1.21.1', ] tests_require = [ 'requests>=2.0.0, <3.0.0', @@ -34,8 +34,8 @@ setup( url = "https://github.com/elastic/elasticsearch-py", long_description = long_description, version = __versionstr__, - author = "Honza Král", - author_email = "honza.kral@gmail.com", + author = "Honza Král, Nick Lang", + author_email = "honza.kral@gmail.com, nick@nicklang.com", packages=find_packages( where='.', exclude=('test_elasticsearch*', )