Skip to content

Commit

Permalink
Release 5.7.3
Browse files Browse the repository at this point in the history
Should finally address the `boto3` vs. `requests` issues with
`urllib3` collisions.
  • Loading branch information
untergeek committed Apr 25, 2019
1 parent d937fd1 commit 0ffd19f
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 12 deletions.
2 changes: 1 addition & 1 deletion curator/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '5.7.2'
__version__ = '5.7.3'
9 changes: 9 additions & 0 deletions docs/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
Changelog
=========

5.7.3 (24 April 2019)
---------------------

**Bug Fix**

* Still further package collisions with ``urllib3`` between ``boto3`` and
``requests``. It was working, but with an unacceptable error, which is
addressed in release 5.7.3. (untergeek)

5.7.2 (24 April 2019)
---------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/asciidoc/index.asciidoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:curator_version: 5.7.2
:curator_version: 5.7.3
:curator_major: 5
:curator_doc_tree: 5.7
:es_py_version: 7.0.0
Expand Down
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
voluptuous>=0.9.3
elasticsearch>=7.0.0,<8.0.0
urllib3==1.24.1
urllib3>=1.21,<1.23
requests==2.18.4
boto3>=1.7.24
requests_aws4auth>=0.9
click>=6.7,<7.0
pyyaml==3.12
certifi>=2018.10.15
certifi>=2019.3.9
six>=1.11.0
13 changes: 8 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,25 @@ classifiers =
install_requires =
voluptuous>=0.9.3
elasticsearch>=7.0.0,<8.0.0
urllib3>=1.21,<1.23
requests==2.18.4
boto3>=1.7.24
requests_aws4auth>=0.9
click>=6.7,<7.0
pyyaml>=3.10
certifi>=2018.10.15
pyyaml==3.12
certifi>=2019.3.9
six>=1.11.0

setup_requires =
voluptuous>=0.9.3
elasticsearch>=7.0.0,<8.0.0
urllib3==1.24.1
urllib3>=1.21,<1.23
requests==2.18.4
boto3>=1.7.24
requests_aws4auth>=0.9
click>=6.7,<7.0
pyyaml>=3.10
certifi>=2018.10.15
pyyaml==3.12
certifi>=2019.3.9
six>=1.11.0

packages = curator
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@ def get_version():

def get_install_requires():
res = ['elasticsearch>=7.0.0,<8.0.0' ]
res.append('urllib3==1.24.1')
res.append('urllib3>=1.21,<1.23')
res.append('requests==2.18.4')
res.append('boto3>=1.7.24')
res.append('requests_aws4auth>=0.9')
res.append('click>=6.7,<7.0')
res.append('pyyaml>=3.10')
res.append('pyyaml==3.12')
res.append('voluptuous>=0.9.3')
res.append('certifi>=2018.10.15')
res.append('certifi>=2019.3.9')
res.append('six>=1.11.0')
return res

Expand Down

0 comments on commit 0ffd19f

Please sign in to comment.