Hi fal team,
I have a Python project that currently uses Pillow 12+. When adding fal==1.72.5, installation fails because fal requires pillow>=10.2.0,<12.
Reproduction:
python -m venv .venv
. .venv/bin/activate
python -m pip install "fal==1.72.5" "Pillow>=12.2.0"
Result:
ERROR: Cannot install fal==1.72.5 and Pillow>=12.2.0 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested Pillow>=12.2.0
fal 1.72.5 depends on pillow<12 and >=10.2.0
Would it be possible to verify compatibility with Pillow 12+ and relax the constraint, for example to:
or another range that matches your tested support window?
Thanks.
Hi fal team,
I have a Python project that currently uses Pillow 12+. When adding
fal==1.72.5, installation fails becausefalrequirespillow>=10.2.0,<12.Reproduction:
Result:
Would it be possible to verify compatibility with Pillow 12+ and relax the constraint, for example to:
or another range that matches your tested support window?
Thanks.