blob: e97410e08deb4ebe1b99c4485b53db897fa57010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Dependencies for development - mainly for running tests
-r requirements.txt
# for now keep pinning "known working" lxml,
# it's been a troublesome component in the past.
# Skip lxml for win32 as no tests which require it currently pass on win32
lxml<5; python_version < '3.13' and sys_platform != 'win32'
ninja
# Needed for test/Parallel/failed-build/failed-build.py
# Also for test/ninja/shutdown_scons_daemon.py
psutil
|