Skip to content

Commit 85558b4

Browse files
committed
Remove extras_require for cElementTree
This was to support Python 2.4, which has been dropped. We now use xml.etree.cElementTree (available since Python 2.5).
1 parent 9f6e834 commit 85558b4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
tests_require.append('mock')
2929

3030
testing_extras = tests_require + [
31-
'pytest',
31+
'pytest',
3232
'pytest-cov',
3333
]
3434

@@ -77,7 +77,6 @@
7777
packages=find_packages(),
7878
install_requires=requires,
7979
extras_require={
80-
'iterparse': ['cElementTree >= 1.0.2'],
8180
'testing': testing_extras,
8281
},
8382
tests_require=tests_require,

0 commit comments

Comments
 (0)