From b3fa8c1605d77fbe769c8d5d55b69377016a4e24 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 27 Feb 2024 16:47:30 +0530 Subject: [PATCH 1/2] updated with open --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8c66fc4..8472b68 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,9 @@ +import io from setuptools import setup, find_packages from os import path this_directory = path.abspath(path.dirname(__file__)) -with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: +with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( From de608dca6882bcda4adffb0a3c3464a15495f980 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 27 Feb 2024 16:49:05 +0530 Subject: [PATCH 2/2] updated version --- CHANGELOG.md | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f603aed..67df162 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [0.16.0] + +### Changed + +- Updated python2 version incompatibility in `setup.py`. + ## [0.15.0] ### Changed diff --git a/setup.py b/setup.py index 8472b68..bd864ab 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='card_data_parsers', - version='0.15.0', + version='0.16.0', author='Siva Narayanan', author_email='siva@fyle.in', url='https://www.fylehq.com',