Skip to content

Commit dbd1646

Browse files
committed
Fixup requirements.txt
Use recent version of keyrings Remove redundant stuff Reordering
1 parent d97ca5c commit dbd1646

1 file changed

Lines changed: 7 additions & 18 deletions

File tree

requirements.txt

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,23 @@
11
# keyring is required to provide GitHub token to EasyBuild;
22
# for recent versions of keyring, keyrings.alt must be installed too
3-
keyring<=9.1
3+
keyring<19.0; python_version < '3.0' # 19.0 dropped Python 2 support
4+
keyring; python_version >= '3.0'
45
keyrings.alt
56

6-
gitdb
7+
# cryptography 3.4.0 no longer supports Python 2
8+
cryptography==3.3.2; python_version < '3.0'
9+
cryptography; python_version >= '3.0'
710

811
# GitPython 3.1.15 deprecates Python 3.5
912
GitPython==3.1.14; python_version >= '3.0' and python_version < '3.6'
1013
GitPython; python_version >= '3.6' or python_version <= '3.0'
1114

12-
13-
# pydot (dep for python-graph-dot)
14-
pydot
15-
15+
# flake8 is a superset of pycodestyle and depends on it (we need pycodestyle for the style tests)
16+
flake8
1617
autopep8
17-
1818
PyYAML
19-
20-
# optional Python packages for EasyBuild
21-
22-
# flake8 is a superset of pycodestyle
23-
flake8
24-
2519
GC3Pie
2620
python-graph-dot
2721
python-hglib
2822
requests
29-
3023
archspec
31-
32-
# cryptography 3.4.0 no longer supports Python 2.7
33-
cryptography==3.3.2; python_version == '2.7'
34-
cryptography; python_version >= '3.5'

0 commit comments

Comments
 (0)