upgrade packages and CI to rai-core-flask==0.7.5, rai-utils==0.4.2 and rai-test-utils==0.4.2 #2556
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
upgrade packages and CI to rai-core-flask==0.7.5, rai-utils==0.4.2 and rai-test-utils==0.4.2
1.) updated erroranalysis package to latest raiutils
2.) updated erroranalysis tests to latest rai-test-utils
3.) updated nlp-feature-extractors to latest raiutils
4.) updated raiwidgets to latest rai-core-flask and latest raiutils
5.) updated responsibleai package to latest raiutils
6.) updated responsibleai tests to latest rai-test-utils
7.) removed patch in python CI to install raiutils from source, which was added recently after a bug surfaced when installing latest packages
Copilot summary:
This pull request primarily involves updating the version of
raiutils
andrai-test-utils
across multiple files and removing a redundant installation step from the GitHub Actions workflow. The changes are aimed at ensuring the use of the latest versions of the dependencies and simplifying the workflow.Dependency version updates:
erroranalysis/requirements-dev.txt
: Updatedrai-test-utils[object_detection]
to version0.4.2
.erroranalysis/requirements.txt
: Updatedraiutils
to version0.4.2
.nlp_feature_extractors/requirements.txt
: Updatedraiutils
to version0.4.2
.raiwidgets/requirements.txt
: Updatedrai-core-flask
to version0.7.5
andraiutils
to version0.4.2
.responsibleai/requirements-dev.txt
: Updatedrai-test-utils
to version0.4.2
.responsibleai/requirements.txt
: Updatedraiutils
to version0.4.2
.Workflow simplification:
.github/workflows/CI-python.yml
: Removed the conditional installation step forrai_test_utils
as it is now included in the requirements files.Checklist