From 25656e23b26d893af198254018de6936f5b7e604 Mon Sep 17 00:00:00 2001 From: gdrosos Date: Sun, 27 Aug 2023 15:23:03 +0300 Subject: [PATCH] Remove unused dependency: xmltodict --- README.md | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 1711eb55..cf43ec18 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,6 @@ This library only supports Python 3.7+. - pysocks -- https://pypi.python.org/pypi/PySocks/ - pytz -- https://pypi.python.org/pypi/pytz - pyYAML -- https://pypi.python.org/pypi/pyYAML/ - - xmltodict -- https://pypi.python.org/pypi/xmltodict/ - zeep -- https://pypi.python.org/pypi/zeep - mock -- https://pypi.python.org/pypi/mock (only needed to run unit tests) diff --git a/setup.py b/setup.py index 4b0a4e85..361cccea 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ DEPENDENCIES = ['google-auth>=2.0.0,<3.0.0', 'google-auth-oauthlib>=1.0.0,<2.0.0', 'pytz>=2015.7', 'PyYAML>=6.0, <7.0', 'requests>=2.0.0,<3.0.0', - 'xmltodict>=0.9.2,<1.0.0', 'zeep>=2.5.0'] + 'zeep>=2.5.0'] TEST_DEPENDENCIES = ['mock>=2.0.0,<3.0.0', 'pyfakefs>=5.1.0']