forked from robotframework/robotframework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequirements.txt
23 lines (17 loc) · 993 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
# External Python modules required by acceptance tests.
# See atest/README.rst for more information.
enum34; python_version < '3.0'
# https://github.com/IronLanguages/ironpython2/issues/113
docutils >= 0.9; platform_python_implementation != 'IronPython'
pygments; platform_python_implementation != 'IronPython'
# https://github.com/yaml/pyyaml/issues/369
pyyaml; platform_python_implementation != 'Jython'
pyyaml == 5.2; platform_python_implementation == 'Jython'
# On Linux installing lxml with pip may require compilation and development
# headers. Alternatively it can be installed using a package manager like
# `sudo apt-get install python-lxml`.
lxml; platform_python_implementation == 'CPython' or platform_python_implementation == 'PyPy'
pillow < 7; platform_system == 'Windows' and python_version == '2.7'
pillow < 6; platform_system == 'Windows' and python_version == '3.4'
pillow >= 7.1.0; platform_system == 'Windows' and python_version >= '3.5'
-r ../utest/requirements.txt