Skip to content

Commit

Permalink
fix: avoid Pillow 10.0.x, 10.1.x
Browse files Browse the repository at this point in the history
there is a memory leak in the 10.x releases that should be fixed in
10.2.0, which isn't out yet, but this version specifier should allow
10.2.0 to be installed when it's released

python-pillow/Pillow#7540
  • Loading branch information
yesrod committed Dec 30, 2023
1 parent 9d5c734 commit 7866b92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
description='The FITHINATOR: A status monitor for FITH TF2 servers',
packages=find_packages(),
python_requires='>=3.7',
install_requires=['python-a2s>=v1.3.0', 'pyyaml', 'luma.core', 'luma.emulator', 'luma.lcd'],
install_requires=['python-a2s>=v1.3.0', 'pyyaml', 'luma.core', 'luma.emulator', 'luma.lcd', 'Pillow != 10.0.*, != 10.1.*'],
package_dir={'fithinator': 'fithinator/'},
package_data={'fithinator': ['display_conf/*.conf', 'static/*']}
)

0 comments on commit 7866b92

Please sign in to comment.