Skip to content

Commit

Permalink
Remove LXML dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
davejcameron committed Apr 25, 2017
1 parent ff40b0a commit 55ffcb0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyciscospa/client.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""PyCiscoSPA."""
import requests
from lxml.etree import fromstring
from xml.etree.ElementTree import fromstring
from xmljson import parker

STATUS_URL = "http://{}/admin/status.xml&xuser={}&xpassword={}"
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
requests
lxml
xmljson
requests-mock
check-manifest
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def find_version(*file_paths):
# 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=['lxml', 'requests', 'xmljson'],
install_requires=['requests', 'xmljson'],

# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
Expand Down

0 comments on commit 55ffcb0

Please sign in to comment.