Skip to content

Commit 8acb14b

Browse files
ci: uninstall diffusers before PyPI install in Docker image
pip install diffusers inside the container was a no-op: the image has 0.38.0.dev0 which pip considers higher than the latest PyPI release (0.37.1), so it skips the install. Uninstall first to force the PyPI version. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7eb1a03 commit 8acb14b

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ jobs:
169169
- name: Install bnb + diffusers from PyPI (overriding image versions)
170170
run: |
171171
pip install "bitsandbytes[test] @ ${BNB_WHEEL_URL}"
172+
pip uninstall -y diffusers
172173
pip install diffusers transformers accelerate peft
173174
174175
- name: Clone diffusers matching installed version

0 commit comments

Comments
 (0)