fix build failures due to new joblib 1.3.0 release failing on windows with python 3.7 (#2155)

This commit is contained in:
Ilya Matiach 2023-06-29 10:53:45 -04:00 коммит произвёл GitHub
Родитель 234c439411
Коммит 8b059d6f5d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -13,6 +13,8 @@ ml-wrappers>=0.4.0
# Jupyter dependency that fails with python 3.6
pywinpty==2.0.2; python_version <= '3.6' and sys_platform == 'win32'
# fix for recent joblib release and windows python 3.7 builds
joblib<1.3.0; python_version <= '3.7' and sys_platform == 'win32'
# Required for notebook tests
nbformat

Просмотреть файл

@ -8,3 +8,5 @@ pytest-mock==3.6.1
deptree~=0.0.10
xgboost<=1.0.0
rai_test_utils==0.3.0
# fix for recent joblib release and windows python 3.7 builds
joblib<1.3.0; python_version <= '3.7' and sys_platform == 'win32'