fixing max urllib3, updating authors

This commit is contained in:
Nick Lang
2018-06-19 12:55:48 -06:00
parent 7751fede5a
commit 4352e56174
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -8,6 +8,7 @@ test_elasticsearch/local.py
docs/_build docs/_build
elasticsearch.egg-info elasticsearch.egg-info
.tox .tox
.noseids
dist dist
*.egg *.egg
coverage.xml coverage.xml
+3 -3
View File
@@ -12,7 +12,7 @@ long_description = f.read().strip()
f.close() f.close()
install_requires = [ install_requires = [
'urllib3<1.23,>=1.21.1', 'urllib3>=1.21.1',
] ]
tests_require = [ tests_require = [
'requests>=2.0.0, <3.0.0', 'requests>=2.0.0, <3.0.0',
@@ -34,8 +34,8 @@ setup(
url = "https://github.com/elastic/elasticsearch-py", url = "https://github.com/elastic/elasticsearch-py",
long_description = long_description, long_description = long_description,
version = __versionstr__, version = __versionstr__,
author = "Honza Král", author = "Honza Král, Nick Lang",
author_email = "[email protected]", author_email = "[email protected], [email protected]",
packages=find_packages( packages=find_packages(
where='.', where='.',
exclude=('test_elasticsearch*', ) exclude=('test_elasticsearch*', )