Skip to content

Commit da2d3ab

Browse files
committed
Fix python implementation marker for setuptools 2.20
1 parent f796cca commit da2d3ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666

6767
# A conditional extra will only install these items when the extra is
6868
# requested and the condition matches.
69-
"datrie:python_implementation == 'CPython'": ["datrie"],
70-
"lxml:python_implementation == 'CPython'": ["lxml"],
69+
"datrie:platform_python_implementation == 'CPython'": ["datrie"],
70+
"lxml:platform_python_implementation == 'CPython'": ["lxml"],
7171

7272
# Standard extras, will be installed when the extra is requested.
7373
"genshi": ["genshi"],
@@ -78,6 +78,6 @@
7878
# extra that will be installed whenever the condition matches and the
7979
# all extra is requested.
8080
"all": ["genshi", "charade"],
81-
"all:python_implementation == 'CPython'": ["datrie", "lxml"],
81+
"all:platform_python_implementation == 'CPython'": ["datrie", "lxml"],
8282
},
8383
)

0 commit comments

Comments
 (0)