File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -145,9 +145,13 @@ jobs:
145
145
- name : Install graphviz
146
146
run : sudo apt-get -yq install graphviz
147
147
if : ${{ matrix.install_graphviz }}
148
- # Add verbose flag to pip installation if in debug mode
149
148
- name : Install econml
150
- run : uv pip install --system .${{ matrix.extras }} ${{ fromJSON('["","-v"]')[runner.debug] }} ${{ env.use_lkg && '-r lkg-notebook.txt' }}
149
+ run : |
150
+ uv pip install --system build
151
+ python -m build --installer uv .
152
+ package=$(ls dist/*.whl)
153
+ echo "package=$package"
154
+ uv pip install --system ./dist/$package${{ matrix.extras }} ${{ fromJSON('["","-v"]')[runner.debug] }} ${{ env.use_lkg && '-r lkg-notebook.txt' }}
151
155
# Install notebook requirements (if not already done as part of lkg)
152
156
- name : Install notebook requirements
153
157
run : uv pip install --system jupyter jupyter-client nbconvert nbformat seaborn xgboost tqdm
You can’t perform that action at this time.
0 commit comments