File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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'
45keyrings.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
912GitPython == 3.1.14 ; python_version >= '3.0' and python_version < '3.6'
1013GitPython ; 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
1617autopep8
17-
1818PyYAML
19-
20- # optional Python packages for EasyBuild
21-
22- # flake8 is a superset of pycodestyle
23- flake8
24-
2519GC3Pie
2620python-graph-dot
2721python-hglib
2822requests
29-
3023archspec
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'
You can’t perform that action at this time.
0 commit comments