Skip to content

Commit

Permalink
Bump version to v1.6.1 (#50)
Browse files Browse the repository at this point in the history
* Update turbojpeg.py

* Update setup.py
  • Loading branch information
lilohuang committed Sep 21, 2021
1 parent fbe03fa commit a0adeb1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages
setup(
name='PyTurboJPEG',
version='1.6.0',
version='1.6.1',
description='A Python wrapper of libjpeg-turbo for decoding and encoding JPEG image.',
author='Lilo Huang',
author_email='kuso.cc@gmail.com',
Expand Down
4 changes: 2 additions & 2 deletions turbojpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# SOFTWARE.

__author__ = 'Lilo Huang <kuso.cc@gmail.com>'
__version__ = '1.6.0'
__version__ = '1.6.1'

from ctypes import *
from ctypes.util import find_library
Expand Down Expand Up @@ -914,4 +914,4 @@ def scaling_factors(self):
out_file.close()
import cv2
cv2.imshow('image', img_array)
cv2.waitKey(0)
cv2.waitKey(0)

0 comments on commit a0adeb1

Please sign in to comment.