Skip to content

Commit 4352e56

Browse files
committed
fixing max urllib3, updating authors
1 parent 7751fed commit 4352e56

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ test_elasticsearch/local.py
88
docs/_build
99
elasticsearch.egg-info
1010
.tox
11+
.noseids
1112
dist
1213
*.egg
1314
coverage.xml

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
f.close()
1313

1414
install_requires = [
15-
'urllib3<1.23,>=1.21.1',
15+
'urllib3>=1.21.1',
1616
]
1717
tests_require = [
1818
'requests>=2.0.0, <3.0.0',
@@ -34,8 +34,8 @@
3434
url = "https://github.com/elastic/elasticsearch-py",
3535
long_description = long_description,
3636
version = __versionstr__,
37-
author = "Honza Král",
38-
author_email = "honza.kral@gmail.com",
37+
author = "Honza Král, Nick Lang",
38+
author_email = "honza.kral@gmail.com, nick@nicklang.com",
3939
packages=find_packages(
4040
where='.',
4141
exclude=('test_elasticsearch*', )

0 commit comments

Comments
 (0)