From a0adeb1254b827d10d76ad77b769a8a823c873e4 Mon Sep 17 00:00:00 2001 From: Lilo Huang Date: Tue, 21 Sep 2021 09:33:39 +0800 Subject: [PATCH] Bump version to v1.6.1 (#50) * Update turbojpeg.py * Update setup.py --- setup.py | 2 +- turbojpeg.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 06a03f2..53d397e 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/turbojpeg.py b/turbojpeg.py index dc76fe7..970647e 100644 --- a/turbojpeg.py +++ b/turbojpeg.py @@ -23,7 +23,7 @@ # SOFTWARE. __author__ = 'Lilo Huang ' -__version__ = '1.6.0' +__version__ = '1.6.1' from ctypes import * from ctypes.util import find_library @@ -914,4 +914,4 @@ def scaling_factors(self): out_file.close() import cv2 cv2.imshow('image', img_array) - cv2.waitKey(0) \ No newline at end of file + cv2.waitKey(0)