We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f796cca commit da2d3abCopy full SHA for da2d3ab
setup.py
@@ -66,8 +66,8 @@
66
67
# A conditional extra will only install these items when the extra is
68
# requested and the condition matches.
69
- "datrie:python_implementation == 'CPython'": ["datrie"],
70
- "lxml:python_implementation == 'CPython'": ["lxml"],
+ "datrie:platform_python_implementation == 'CPython'": ["datrie"],
+ "lxml:platform_python_implementation == 'CPython'": ["lxml"],
71
72
# Standard extras, will be installed when the extra is requested.
73
"genshi": ["genshi"],
@@ -78,6 +78,6 @@
78
# extra that will be installed whenever the condition matches and the
79
# all extra is requested.
80
"all": ["genshi", "charade"],
81
- "all:python_implementation == 'CPython'": ["datrie", "lxml"],
+ "all:platform_python_implementation == 'CPython'": ["datrie", "lxml"],
82
},
83
)
0 commit comments