From 8d64ad240dc42d57e5c319ce344fbe0099443e83 Mon Sep 17 00:00:00 2001 From: shivrajtapkir Date: Thu, 29 Aug 2024 11:02:14 +0530 Subject: [PATCH] Commiting changes to fix Python sdk incompatibility for PyXB-X library to support Python 3.12 version (#37) * Commiting changes to fix Python sdk incompatibility for PyXB-X library to support Python 3.12 version * Commiting changes to fix Python sdk incompatibility for PyXB-X library to support Python 3.12 version --- CHANGELOG | 3 +++ docs/source/index.rst | 2 +- setup.py | 4 ++-- vantivsdk/version.py | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a0413e9..0f378ba 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ = Vantiv eCommerce Python SDK +==Version 12.37.1 (v12.37.1)(August 28, 2024) +* Change: [cnpAPI v12.37.1] Added change to upgrade to a newer version of PyXB-X library which supports Python 3.12 + ==Version 12.37.0 (v12.37.0)(July 10, 2024) * Change: [cnpAPI v12.37] New existing 'postCheckoutRedirectUrl' with min length '1' and maxlength '200' * Change: [cnpAPI v12.37] New enum 'provider' is added with value 'AFFIRM' diff --git a/docs/source/index.rst b/docs/source/index.rst index 1e98c1b..a340694 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -1,4 +1,4 @@ -Vantiv eCommerce Python SDK 12.37.0! +Vantiv eCommerce Python SDK 12.37.1! ==================================== .. toctree:: :maxdepth: 2 diff --git a/setup.py b/setup.py index f10c05a..c67c913 100644 --- a/setup.py +++ b/setup.py @@ -11,14 +11,14 @@ setup( name='VantiveCommerceSDK', - version='12.37.0', + version='12.37.1', description='Vantiv eCommerce Python SDK', author='Vantiv eCommerce', author_email='SDKSupport@vantiv.com', url='https://developer.vantiv.com/community/ecommerce', packages=['vantivsdk', 'scripts'], install_requires=[ - 'PyXB-X==1.2.6.1', + 'PyXB-X>=1.2.6.1', 'paramiko>=1.14.0', 'requests>=2.13.0', 'six>=1.10.0', diff --git a/vantivsdk/version.py b/vantivsdk/version.py index fdcfd10..919aef1 100644 --- a/vantivsdk/version.py +++ b/vantivsdk/version.py @@ -25,4 +25,4 @@ # XML Version VERSION = u'12.37' # SDK release -RELEASE = u'12.37.0' \ No newline at end of file +RELEASE = u'12.37.1' \ No newline at end of file