We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2ccb2f commit b4e024aCopy full SHA for b4e024a
README.rst
@@ -111,13 +111,12 @@ your project please list a python-isal dependency as follows.
111
``setup.cfg``::
112
113
install_requires =
114
- isal; platform.python_implementation == 'CPython' and (platform.machine == "x86_64" or platform.machine == "AMD64")
+ isal; platform.machine == "x86_64" or platform.machine == "AMD64"
115
116
``setup.py``::
117
118
extras_require={
119
- ":platform.python_implementation == 'CPython' and "
120
- "(platform.machine == 'x86_64' or platform.machine == 'AMD64')": ['isal']
+ ":platform.machine == 'x86_64' or platform.machine == 'AMD64'": ['isal']
121
},
122
123
.. dependency end
0 commit comments