From be8fb5062375bab0e668fa4a71623e7bb20a4f56 Mon Sep 17 00:00:00 2001 From: Mark Murnane Date: Sun, 14 Apr 2024 16:26:23 -0400 Subject: [PATCH 1/8] Using six directly --- authorizenet/apicontractsv1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authorizenet/apicontractsv1.py b/authorizenet/apicontractsv1.py index c5eb3a0..030f9b3 100644 --- a/authorizenet/apicontractsv1.py +++ b/authorizenet/apicontractsv1.py @@ -12,7 +12,7 @@ import pyxb.utils.utility import pyxb.utils.domutils import sys -import pyxb.utils.six as _six +import six as _six # Unique identifier for bindings created at the same time _GenerationUID = pyxb.utils.utility.UniqueIdentifier('urn:uuid:6a124e8c-3f7c-11eb-bcdb-847beb3cc146') From 6398095aaa76e9025e094ac3dee3d6263f906d7f Mon Sep 17 00:00:00 2001 From: Mark Murnane Date: Sun, 14 Apr 2024 16:35:56 -0400 Subject: [PATCH 2/8] Updating pyxb --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 55449af..5028b6b 100644 --- a/setup.py +++ b/setup.py @@ -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==1.2.6', 'lxml==4.*', 'requests==2.*'], #install_requires=['nose'], #install_requires=['nosetests'], #install_requires=['mock'], From 5747db90be0ef42b81f5fb3916d5829275b80576 Mon Sep 17 00:00:00 2001 From: Mark Murnane Date: Sun, 14 Apr 2024 16:44:14 -0400 Subject: [PATCH 3/8] Using pyxb-x --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5028b6b..7e3c16b 100644 --- a/setup.py +++ b/setup.py @@ -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.6', 'lxml==4.*', 'requests==2.*'], + install_requires=['PyXB-X==1.2.6.2', 'lxml==4.*', 'requests==2.*'], #install_requires=['nose'], #install_requires=['nosetests'], #install_requires=['mock'], From a8e3b020327aed01d0b3094027f3c811c7c61892 Mon Sep 17 00:00:00 2001 From: Mark Murnane Date: Sun, 14 Apr 2024 16:48:13 -0400 Subject: [PATCH 4/8] Bumping bindings version --- authorizenet/apicontractsv1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authorizenet/apicontractsv1.py b/authorizenet/apicontractsv1.py index 030f9b3..5986c22 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.6.2' # Generated bindings are not compatible across PyXB versions if pyxb.__version__ != _PyXBVersion: raise pyxb.PyXBVersionError(_PyXBVersion) From 72be6a555602f5f6a4ea381a51c6ebe43475c3f8 Mon Sep 17 00:00:00 2001 From: Mark Murnane Date: Sun, 14 Apr 2024 16:57:14 -0400 Subject: [PATCH 5/8] Fixing pyxb version --- authorizenet/apicontractsv1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authorizenet/apicontractsv1.py b/authorizenet/apicontractsv1.py index 5986c22..3b216c7 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.6.2' +_PyXBVersion = '1.2.6' # Generated bindings are not compatible across PyXB versions if pyxb.__version__ != _PyXBVersion: raise pyxb.PyXBVersionError(_PyXBVersion) From 386cacd6755a97d41d757e47d82723a9a23352cc Mon Sep 17 00:00:00 2001 From: Mark Murnane Date: Sun, 14 Apr 2024 17:03:14 -0400 Subject: [PATCH 6/8] Moving from SafeConfigParser to ConfigParser --- authorizenet/utility.py | 2 +- tests/apitestbase.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/authorizenet/utility.py b/authorizenet/utility.py index 8dd9a9d..972627c 100644 --- a/authorizenet/utility.py +++ b/authorizenet/utility.py @@ -8,7 +8,7 @@ from ConfigParser import SafeConfigParser from ConfigParser import NoSectionError except ImportError: - from configparser import SafeConfigParser + from configparser import ConfigParser as SafeConfigParser from configparser import NoSectionError import os diff --git a/tests/apitestbase.py b/tests/apitestbase.py index 630ac23..71f4abf 100644 --- a/tests/apitestbase.py +++ b/tests/apitestbase.py @@ -13,7 +13,7 @@ try: from ConfigParser import SafeConfigParser except ImportError: - from configparser import SafeConfigParser + from configparser import ConfigParser as SafeConfigParser from authorizenet import apicontractsv1, apicontrollersbase from authorizenet.utility import * From 3cfb93da8b9988d6112a5c08b3c8d4d3f1e7d808 Mon Sep 17 00:00:00 2001 From: Mark Murnane Date: Wed, 17 Apr 2024 23:58:16 -0400 Subject: [PATCH 7/8] Upgrading lxml --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7e3c16b..b7f8465 100644 --- a/setup.py +++ b/setup.py @@ -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-X==1.2.6.2', 'lxml==4.*', 'requests==2.*'], + install_requires=['PyXB-X==1.2.6.2', 'lxml==5.*', 'requests==2.*'], #install_requires=['nose'], #install_requires=['nosetests'], #install_requires=['mock'], From f5af78f4332a2721ec1d204fec41c3fe5ff5f7b5 Mon Sep 17 00:00:00 2001 From: "Raven \"Kit\" Osaki" Date: Mon, 24 Mar 2025 19:05:46 +0100 Subject: [PATCH 8/8] Update setup.cfg to fix underscore issue in build process --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 68ebb3d..1c1439a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -description-file = DESCRIPTION.rst \ No newline at end of file +description_file = DESCRIPTION.rst pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy