Skip to content

Commit

Permalink
fix build failures due to new joblib 1.3.0 release failing on windows…
Browse files Browse the repository at this point in the history
… with python 3.7 (#2155)
  • Loading branch information
imatiach-msft authored Jun 29, 2023
1 parent 234c439 commit 8b059d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions raiwidgets/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions responsibleai/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 8b059d6

Please sign in to comment.