We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I just got a deprecation warning when checking my django project:
DeprecationWarning: defusedxml.lxml is no longer supported and will be removed in a future release
It looks like it comes from this package - specifically the from defusedxml.lxml import fromstring imports in several files. (See https://github.com/onelogin/python-saml/search?q=defusedxml.lxml&unscoped_q=defusedxml.lxml)
from defusedxml.lxml import fromstring
Are there any plans to remove this dependency on defusedxml.lxml? I see it's been discussed in #221 , but that seems to be pre-deprecation.
Thanks for all your work on this project
The text was updated successfully, but these errors were encountered:
No plans right now.
See SAML-Toolkits/python3-saml#159
Sorry, something went wrong.
cElementTree was removed in Python 3.9. See tiran/defusedxml#50
See #221 and #267. Custom lxml parser based on the one defined at xml…
64fbe77
…defused. Parser will ignore comments and processing instructions and by default have deactivated huge_tree, DTD and access to external documents
Merge pull request #278 from onelogin/xmlparser
4a3efac
See #221 and #267. Custom lxml parser based on the one defined at xmldefused
No branches or pull requests
I just got a deprecation warning when checking my django project:
It looks like it comes from this package - specifically the
from defusedxml.lxml import fromstring
imports in several files. (See https://github.com/onelogin/python-saml/search?q=defusedxml.lxml&unscoped_q=defusedxml.lxml)Are there any plans to remove this dependency on defusedxml.lxml? I see it's been discussed in #221 , but that seems to be pre-deprecation.
Thanks for all your work on this project
The text was updated successfully, but these errors were encountered: