Fix client release error#139
Merged
Merged
Conversation
|
PR Deployment Details: |
andresfchamorro
approved these changes
Jul 2, 2025
Gabe-Levin
added a commit
that referenced
this pull request
Nov 7, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What I changed:
To fix the dependency error in the client-release test workflow for the widgets, I moved the install command to its own line and specified installation in editable mode.
poetry run pip install -e .[widgets]Additionally, I added a workflow_dispatch in order to test the workflow without triggering an actual release. All tests passed after running the following:
gh workflow run "Client Release" --ref fix/ci-widgets-dependenciesThe test run can be seen in the actions tab on github here: https://github.com/worldbank/DECAT_Space2Stats/actions/runs/16023331907
Clicking on this action, you can see that the widget dependencies (ie. ipywidgets etc) were successfully installed, and all the tests passed.