Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b0218af

Browse files
AlexWaygoodsrittau
andauthored
Fix pyright CI job (#11689)
Co-authored-by: Sebastian Rittau <[email protected]>
1 parent 18fff9f commit b0218af

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ jobs:
123123
if [ -n "$DEPENDENCIES" ]; then
124124
source .venv/bin/activate
125125
echo "Installing packages: $DEPENDENCIES"
126-
uv pip install $DEPENDENCIES
126+
# https://github.com/python/typeshed/issues/11688
127+
echo "Pillow<10.3" > constraints.txt
128+
uv pip install -c constraints.txt $DEPENDENCIES
127129
fi
128130
- name: Activate the isolated venv for the rest of the job
129131
run: echo "$PWD/.venv/bin" >> $GITHUB_PATH

0 commit comments

Comments
 (0)