Skip to content

Commit

Permalink
Prevent gifsicle warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Garth Minette committed Feb 17, 2021
1 parent d745d10 commit 4801941
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion openscad_runner/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def run(self):
)
for imgfile in imgfiles:
os.unlink(imgfile)
pygifsicle.optimize(self.outfile)
pygifsicle.optimize(self.outfile, colors=64)
elif self.antialias != 1.0:
im = Image.open(self.outfile)
im.thumbnail(self.imgsize, Image.ANTIALIAS)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup

VERSION = "1.0.4"
VERSION = "1.0.5"


with open('README.rst') as f:
Expand All @@ -19,7 +19,7 @@
author='Revar Desmera',
author_email='revarbat@gmail.com',
url='https://github.com/revarbat/openscad_runner',
download_url='https://github.com/revarbat/openscad_runner/archive/v1.0.4.zip',
download_url='https://github.com/revarbat/openscad_runner/archive/v1.0.5.zip',
packages=['openscad_runner'],
license='MIT License',
classifiers=[
Expand Down

0 comments on commit 4801941

Please sign in to comment.