We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 226247f commit cfdb7b4Copy full SHA for cfdb7b4
setup.py
@@ -55,8 +55,8 @@
55
56
# A conditional extra will only install these items when the extra is
57
# requested and the condition matches.
58
- "datrie:python_implementation == 'CPython'": ["datrie"],
59
- "lxml:python_implementation == 'CPython'": ["lxml"],
+ "datrie:platform_python_implementation == 'CPython'": ["datrie"],
+ "lxml:platform_python_implementation == 'CPython'": ["lxml"],
60
61
# Standard extras, will be installed when the extra is requested.
62
"genshi": ["genshi"],
@@ -67,6 +67,6 @@
67
# extra that will be installed whenever the condition matches and the
68
# all extra is requested.
69
"all": ["genshi", "chardet>=2.2"],
70
- "all:python_implementation == 'CPython'": ["datrie", "lxml"],
+ "all:platform_python_implementation == 'CPython'": ["datrie", "lxml"],
71
},
72
)
0 commit comments