-
Notifications
You must be signed in to change notification settings - Fork 381
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix responsibleai toolbox build failures due to dependency updates #2571
Conversation
1f63c41
to
0482bc0
Compare
0482bc0
to
e486400
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2571 +/- ##
==========================================
+ Coverage 88.15% 89.38% +1.22%
==========================================
Files 39 106 +67
Lines 853 6738 +5885
==========================================
+ Hits 752 6023 +5271
- Misses 101 715 +614
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
e486400
to
95879be
Compare
1 similar comment
Let me send another PR for the rest of the build failures, as this PR has a ton of different fixes already and is getting crowded |
Description
There seem to be a ton of errors due to various changes over the past several weeks.
1.)
Fix errors due to flake8 linting build failures after flake8 package updates on pypi:
./raiwidgets/raiwidgets/fairness_dashboard.py:165:75: E502 the backslash is redundant between brackets
2.) Add upper bound to numpy 2.0.0 release due to incompatibility with pandas<2.0.0
3.) The file with object detection images used in notebooks and tests was removed: https://cvbp-secondary.z19.web.core.windows.net/datasets/object_detection/odFridgeObjects.zip
Replacing it with our own copy: https://publictestdatasets.blob.core.windows.net/computervision/odFridgeObjects.zip
4.) Setting trust_remote_code=True for huggingface datasets due to new updates in huggingface
5.) Adding "brew install libomp" for latest lightgbm package release
Checklist