Skip to content

Commit

Permalink
point at a working implementation of pyxb that supports py3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanpetrello committed Apr 18, 2023
1 parent 11f5f69 commit 106f0af
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions authorizenet/apicontractsv1.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +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.5'
# 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.
_module_typeBindings = pyxb.utils.utility.Object()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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-X==1.2.6.1', 'lxml==4.*', 'requests==2.*'],
#install_requires=['nose'],
#install_requires=['nosetests'],
#install_requires=['mock'],
Expand Down

2 comments on commit 106f0af

@scottie
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You plan to merge this or just leave it sitting around for 1 and a half years ??

@ryanpetrello
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yea, gonna leave it sitting. Maybe a few more years.

Please sign in to comment.