File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,10 @@ jobs:
125125 working-directory : ./docs/source-${{ matrix.pkg-name }}
126126 # allow failing link check and doctest if you run with dispatch
127127 continue-on-error : ${{ (matrix.target == 'doctest' || matrix.target == 'linkcheck') && github.event_name == 'workflow_dispatch' }}
128- run : make ${{ matrix.target }} --debug --jobs $(nproc) SPHINXOPTS="$BUILD_SPHINX_OPTS"
128+ run : |
129+ # temp fix: https://github.com/Lightning-AI/pytorch-lightning/actions/runs/19440502586/job/55622388642?pr=21354#step:11:4596
130+ uv pip install -U fastapi
131+ make ${{ matrix.target }} --debug --jobs $(nproc) SPHINXOPTS="$BUILD_SPHINX_OPTS"
129132
130133 - name : Keep artifact
131134 if : github.event_name == 'pull_request'
Original file line number Diff line number Diff line change 77pkginfo ==1.12.1.2
88packaging <25.1
99tomlkit
10- fastapi >=0.111.0 # to prevent `schema` error in `pydantic`
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ onnxruntime >=1.12.0, <1.24.0
1616onnxscript >= 0.1.0, < 0.6.0
1717psutil <7.1.2 # for `DeviceStatsMonitor`
1818pandas >2.0, <2.4.0 # needed in benchmarks
19- fastapi >=0.111.0 # for `ServableModuleValidator` # not setting version as re-defined in App
19+ fastapi # for `ServableModuleValidator` # not setting version as re-defined in App
2020uvicorn # for `ServableModuleValidator` # not setting version as re-defined in App
2121
2222tensorboard >=2.11, <2.21.0 # for `TensorBoardLogger`
You can’t perform that action at this time.
0 commit comments