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 9b962ac commit f842ea9Copy full SHA for f842ea9
README.rst
@@ -111,12 +111,12 @@ your project please list a python-isal dependency as follows.
111
``setup.cfg``::
112
113
install_requires =
114
- isal; platform.machine == "x86_64" or platform.machine == "AMD64"
+ isal; platform.machine == "x86_64" or platform.machine == "AMD64" or platform.machine == "aarch64"
115
116
``setup.py``::
117
118
extras_require={
119
- ":platform.machine == 'x86_64' or platform.machine == 'AMD64'": ['isal']
+ ":platform.machine == 'x86_64' or platform.machine == 'AMD64' or platform.machine == 'aarch64'": ['isal']
120
},
121
122
.. dependency end
0 commit comments