From a6c5890b97ca2c08fe17cf9767bc467b1699de8e Mon Sep 17 00:00:00 2001 From: Peter Portante Date: Fri, 18 Sep 2020 16:51:22 -0400 Subject: [PATCH] Sort modules in *requirements.txt Keeping them sorted makes it a bit easier to avoid adding a duplicate and avoids additions happening randomly. There is a concern that pip might not handle dependency order properly, so we'll have to watch for that. --- requirements.txt | 22 +++++++++++----------- test-requirements.txt | 8 ++++---- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/requirements.txt b/requirements.txt index ed3ebb4d39..63eeb99ed8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,16 +1,16 @@ ansible -elasticsearch1==1.10.0 -sh boto3 -requests -werkzeug +bottle +cffi +click +colorlog +elasticsearch1==1.10.0 flask flask-restful -click -cffi -redis -python-pidfile -python-daemon -bottle pyesbulk -colorlog +python-daemon +python-pidfile +redis +requests +sh +werkzeug diff --git a/test-requirements.txt b/test-requirements.txt index 66ede08a62..3a61d1bcea 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,8 +1,8 @@ flake8==3.8.3 -pre-commit -responses mock -pytest-mock>=1.10.4, < 2 -pytest-sugar>=0.9.2, < 1 +pre-commit pytest>=4.6.3, < 5 pytest-helpers-namespace>=2019.1.8, < 2020 +pytest-mock>=1.10.4, < 2 +pytest-sugar>=0.9.2, < 1 +responses