Skip to content

Commit

Permalink
Add splinter related lxml dependencies.
Browse files Browse the repository at this point in the history
Although splinter has a [zope.testbrowser] extras, we can not use the extras because
it installs lxml / cssselect with versions incompatible to those pinned by Plone KGS [1].

Therefore directly declare the dependencies and let the KGSs do the version pinning job.

[1] http://dist.plone.org/release/4.3-latest/versions.cfg
  • Loading branch information
jone committed Apr 30, 2013
1 parent 96ee87b commit ea83273
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -7,7 +7,9 @@
extras_require = {
'splinter': [
'plone.app.testing',
'splinter']}
'splinter >= 0.5.1',
'lxml',
'cssselect']}

tests_require = [
'Acquisition<4.0a1',
Expand Down

0 comments on commit ea83273

Please sign in to comment.