Skip to content

Commit cfdb7b4

Browse files
committed
fix env markers to match official setuptools ones
1 parent 226247f commit cfdb7b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555

5656
# A conditional extra will only install these items when the extra is
5757
# requested and the condition matches.
58-
"datrie:python_implementation == 'CPython'": ["datrie"],
59-
"lxml:python_implementation == 'CPython'": ["lxml"],
58+
"datrie:platform_python_implementation == 'CPython'": ["datrie"],
59+
"lxml:platform_python_implementation == 'CPython'": ["lxml"],
6060

6161
# Standard extras, will be installed when the extra is requested.
6262
"genshi": ["genshi"],
@@ -67,6 +67,6 @@
6767
# extra that will be installed whenever the condition matches and the
6868
# all extra is requested.
6969
"all": ["genshi", "chardet>=2.2"],
70-
"all:python_implementation == 'CPython'": ["datrie", "lxml"],
70+
"all:platform_python_implementation == 'CPython'": ["datrie", "lxml"],
7171
},
7272
)

0 commit comments

Comments
 (0)