Skip to content

Commit

Permalink
build: Lint install_requires in setup.py
Browse files Browse the repository at this point in the history
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 <rzr@users.sf.net>
  • Loading branch information
rzr committed Mar 3, 2021
1 parent 313511a commit 6b89f18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit 6b89f18

Please sign in to comment.