Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@

# A conditional extra will only install these items when the extra is
# requested and the condition matches.
"datrie:platform_python_implementation == 'CPython'": ["datrie"],
"lxml:platform_python_implementation == 'CPython'": ["lxml"],
"datrie:platform.python_implementation == 'CPython'": ["datrie"],
"lxml:platform.python_implementation == 'CPython'": ["lxml"],

# Standard extras, will be installed when the extra is requested.
"genshi": ["genshi"],
Expand All @@ -77,6 +77,6 @@
# extra that will be installed whenever the condition matches and the
# all extra is requested.
"all": ["genshi", "charade"],
"all:platform_python_implementation == 'CPython'": ["datrie", "lxml"],
"all:platform.python_implementation == 'CPython'": ["datrie", "lxml"],
},
)