forked from easybuilders/easybuild-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements.txt
35 lines (26 loc) · 814 Bytes
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# keyring is required to provide GitHub token to EasyBuild;
# for recent versions of keyring, keyrings.alt must be installed too
keyring
keyrings.alt
# GitPython 3.1.15 deprecates Python 3.5
GitPython==3.1.14; python_version >= '3.0' and python_version < '3.6'
GitPython; python_version >= '3.6' or python_version <= '3.0'
# autopep8
autopep8
# PyYAML
PyYAML
# optional Python packages for EasyBuild
# flake8 is a superset of pycodestyle
flake8
# 2.6.7 uses invalid Python 2 syntax
GC3Pie!=2.6.7; python_version < '3.0'
GC3Pie; python_version >= '3.0'
python-graph-dot
python-hglib
requests
archspec
# cryptography 3.4.0 no longer supports Python 2.7
cryptography==3.3.2; python_version == '2.7'
cryptography; python_version >= '3.5'
# rich is only supported for Python 3.6+
rich; python_version >= '3.6'