Skip to content

Commit

Permalink
Remove extras_require for cElementTree
Browse files Browse the repository at this point in the history
This was to support Python 2.4, which has been dropped.  We now
use xml.etree.cElementTree (available since Python 2.5).
  • Loading branch information
mnaberez committed Apr 28, 2018
1 parent 9f6e834 commit 85558b4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
tests_require.append('mock')

testing_extras = tests_require + [
'pytest',
'pytest',
'pytest-cov',
]

Expand Down Expand Up @@ -77,7 +77,6 @@
packages=find_packages(),
install_requires=requires,
extras_require={
'iterparse': ['cElementTree >= 1.0.2'],
'testing': testing_extras,
},
tests_require=tests_require,
Expand Down

0 comments on commit 85558b4

Please sign in to comment.