Skip to content

Commit b4e024a

Browse files
committed
Remove cpython specificness
1 parent d2ccb2f commit b4e024a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,12 @@ your project please list a python-isal dependency as follows.
111111
``setup.cfg``::
112112

113113
install_requires =
114-
isal; platform.python_implementation == 'CPython' and (platform.machine == "x86_64" or platform.machine == "AMD64")
114+
isal; platform.machine == "x86_64" or platform.machine == "AMD64"
115115

116116
``setup.py``::
117117

118118
extras_require={
119-
":platform.python_implementation == 'CPython' and "
120-
"(platform.machine == 'x86_64' or platform.machine == 'AMD64')": ['isal']
119+
":platform.machine == 'x86_64' or platform.machine == 'AMD64'": ['isal']
121120
},
122121

123122
.. dependency end

0 commit comments

Comments
 (0)