Skip to content

Commit 7eb1a03

Browse files
ci: install diffusers from PyPI inside Docker image
The Docker image provides system deps (libGL, etc.) but ships a dev version from main with no matching tag. Override with PyPI release inside the container so we test against what real users have, and the tag clone works. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 64c0609 commit 7eb1a03

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/tests-integration-nightly.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,10 @@ jobs:
166166

167167
- uses: actions/checkout@v4
168168

169-
- name: Install bnb (from continuous-release) over the image's version
169+
- name: Install bnb + diffusers from PyPI (overriding image versions)
170170
run: |
171-
pip install --force-reinstall --no-deps ${BNB_WHEEL_URL}
171+
pip install "bitsandbytes[test] @ ${BNB_WHEEL_URL}"
172+
pip install diffusers transformers accelerate peft
172173
173174
- name: Clone diffusers matching installed version
174175
run: |

0 commit comments

Comments
 (0)