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