From aa26adc17ceb1ec97d1ff31175e7f42a2604c971 Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 2 Dec 2022 11:13:53 -0800 Subject: [PATCH 1/3] Update version check --- authorizenet/apicontractsv1.py | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/authorizenet/apicontractsv1.py b/authorizenet/apicontractsv1.py index c5eb3a0..69a7bb9 100644 --- a/authorizenet/apicontractsv1.py +++ b/authorizenet/apicontractsv1.py @@ -17,7 +17,7 @@ _GenerationUID = pyxb.utils.utility.UniqueIdentifier('urn:uuid:6a124e8c-3f7c-11eb-bcdb-847beb3cc146') # Version of PyXB used to generate the bindings -_PyXBVersion = '1.2.5' +_PyXBVersion = '1.2.8' # Generated bindings are not compatible across PyXB versions if pyxb.__version__ != _PyXBVersion: raise pyxb.PyXBVersionError(_PyXBVersion) diff --git a/setup.py b/setup.py index 55449af..2a0784c 100644 --- a/setup.py +++ b/setup.py @@ -12,12 +12,12 @@ setup( - name='authorizenet', + name='authorizenet-pyxb-new', # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='1.1.4', + version='1.1.6', description='Authorize.Net Python SDK', @@ -63,7 +63,7 @@ # your project is installed. For an analysis of "install_requires" vs pip's # requirements files see: # https://packaging.python.org/en/latest/requirements.html - install_requires=['pyxb==1.2.5', 'lxml==4.*', 'requests==2.*'], + install_requires=['pyxb-new==1.2.8', 'lxml==4.*', 'requests==2.*'], #install_requires=['nose'], #install_requires=['nosetests'], #install_requires=['mock'], From 9aeb21d663c549fe9ca9e45c625d3ba812bbb0fe Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 2 Dec 2022 11:16:00 -0800 Subject: [PATCH 2/3] Remove version check --- authorizenet/apicontractsv1.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/authorizenet/apicontractsv1.py b/authorizenet/apicontractsv1.py index 69a7bb9..bc368d8 100644 --- a/authorizenet/apicontractsv1.py +++ b/authorizenet/apicontractsv1.py @@ -16,11 +16,6 @@ # Unique identifier for bindings created at the same time _GenerationUID = pyxb.utils.utility.UniqueIdentifier('urn:uuid:6a124e8c-3f7c-11eb-bcdb-847beb3cc146') -# Version of PyXB used to generate the bindings -_PyXBVersion = '1.2.8' -# Generated bindings are not compatible across PyXB versions -if pyxb.__version__ != _PyXBVersion: - raise pyxb.PyXBVersionError(_PyXBVersion) # A holder for module-level binding classes so we can access them from # inside class definitions where property names may conflict. From 28b8dc3784f10bbda2830c0615e0a2ecd6047b2e Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 2 Dec 2022 11:16:34 -0800 Subject: [PATCH 3/3] Update setup --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2a0784c..2f632a2 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='1.1.6', + version='1.1.7', description='Authorize.Net Python SDK', @@ -27,7 +27,8 @@ # Author details author='Authorize.Net Developer', author_email='developer@authorize.net', - + maintainer='Max Bridgland', + maintainer_email='me@maxbridgland.com', # Choose your license license='proprietary',