diff options
author | William Deegan <bill@baddogconsulting.com> | 2023-01-23 17:28:20 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2023-01-23 17:28:20 (GMT) |
commit | a10124dc776002f2c59ccb79923c79a930781d72 (patch) | |
tree | 6954b99dbfb96a7b6379948aae3e89cb2c38eb9b | |
parent | ee1f1092e0eaccd4bd726e71009294cb15f65b83 (diff) | |
download | SCons-a10124dc776002f2c59ccb79923c79a930781d72.zip SCons-a10124dc776002f2c59ccb79923c79a930781d72.tar.gz SCons-a10124dc776002f2c59ccb79923c79a930781d72.tar.bz2 |
Skip lxml if using py 3.11+ and you're on windows as there's currently not a lxml binary wheel for such. Remove when this changes
-rw-r--r-- | requirements-dev.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/requirements-dev.txt b/requirements-dev.txt index 6f9855f..1b12a75 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -4,7 +4,9 @@ # for now keep pinning "known working" lxml, # it's been a troublesome component in the past. -lxml==4.9.1 +# Skip lxml for python 3.11+ on win32 as there's no binary wheel as of 01/22/2023 +lxml==4.9.1 ; python_version < '3.11' and sys_platform != 'win32' + ninja # Needed for test/Parallel/failed-build/failed-build.py |