|
65 | 65 |
|
66 | 66 | # A conditional extra will only install these items when the extra is |
67 | 67 | # requested and the condition matches. |
68 | | -"datrie:python_implementation == 'CPython'": ["datrie"], |
69 | | -"lxml:python_implementation == 'CPython'": ["lxml"], |
| 68 | +"datrie": ["datrie"], |
| 69 | +"lxml": ["lxml"], |
70 | 70 |
|
71 | 71 | # Standard extras, will be installed when the extra is requested. |
72 | 72 | "genshi": ["genshi"], |
|
76 | 76 | # the all extra is requested, and it extends it with a conditional |
77 | 77 | # extra that will be installed whenever the condition matches and the |
78 | 78 | # all extra is requested. |
79 | | -"all": ["genshi","charade"], |
80 | | -"all:python_implementation == 'CPython'": ["datrie","lxml"], |
| 79 | +"all": ["genshi","charade","datrie","lxml"], |
81 | 80 | }, |
82 | 81 | ) |