From 6b89f18a365f8942901461111cb9d2acc43dc4de Mon Sep 17 00:00:00 2001 From: Philippe Coval Date: Tue, 2 Mar 2021 23:00:12 +0100 Subject: [PATCH] build: Lint install_requires in setup.py While doing packaging works I noticed that pypi file 'tuf.egg-info/requires.txt' was modified on build. Let's sort dependencies alphabetically to avoid lint to change sources files. Signed-off-by: Philippe Coval --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c65a794645..7984d2d662 100755 --- a/setup.py +++ b/setup.py @@ -113,8 +113,8 @@ python_requires="~=3.6", install_requires = [ 'requests>=2.19.1', - 'six>=1.11.0', - 'securesystemslib>=0.18.0' + 'securesystemslib>=0.18.0', + 'six>=1.11.0' ], packages = find_packages(exclude=['tests']), scripts = [