Skip to content

Commit

Permalink
setup: use specific dependencies
Browse files Browse the repository at this point in the history
Include pillow as a direct dependency so we get to specify its
version. For some reason it otherwise _sometimes_ fails to determine
it's already installed on my system..
  • Loading branch information
eras committed Feb 27, 2022
1 parent bf88627 commit d635c5a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
description='Tool for generating sequence diagrams from TLC state traces',
long_description=open('README.md').read(),
install_requires=[
"drawSvg",
"drawSvg==1.8.3",
"pillow==5.4.1"
],
)

0 comments on commit d635c5a

Please sign in to comment.