From 8612a5d1b3ef9c588c583c67fa5d0274c81b81b4 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Mon, 22 Apr 2019 19:54:46 -0400 Subject: [PATCH] 6.3.3 - Fix dependency order --- CHANGELOG.md | 3 ++- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00dc129..bdbbbf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ 6.3.3 ----- -- Set `number_of_shards` and `number_of_replicas` to `1` when creating indexes +- Set `number_of_shards` and `number_of_replicas` to `1` when creating indexes +- Fix dependency order 6.3.2 ----- diff --git a/requirements.txt b/requirements.txt index 2fd5571..bdab5a3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,8 +9,8 @@ rstcheck>=3.3.1 pygments dnspython>=1.16.0 expiringdict>=1.1.4 -urllib3>=1.21.1 requests>=2.2.16.0 +urllib3>=1.21.1 publicsuffix2 xmltodict>=0.12.0 geoip2>=2.9.0 diff --git a/setup.py b/setup.py index c79db71..e18a2a9 100644 --- a/setup.py +++ b/setup.py @@ -94,7 +94,7 @@ setup( # https://packaging.python.org/en/latest/requirements.html install_requires=['dnspython>=1.16.0', 'expiringdict>=1.1.4', 'publicsuffix2', 'xmltodict>=0.12.0', 'geoip2>=2.9.0', - 'urllib3>=1.21.1', 'requests>=2.2.16.0', + 'requests>=2.2.16.0', 'urllib3>=1.21.1', 'imapclient>=2.1.0', 'mail-parser>=3.9.2', 'dateparser>=0.7.1', 'elasticsearch>=6.3.1,<7.0.0',