Skip to content

Commit 9335ce1

Browse files
authored
Merge pull request #120 from fabinsch/topic/fix-instructionset
fix instructionset import
2 parents b366929 + 01d8c87 commit 9335ce1

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

bindings/python/proxsuite/__init__.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import platform
22

3-
if (
4-
"i386" in platform.processor()
5-
or "x86_64" in platform.processor()
6-
or "Intel64" in platform.processor()
7-
):
3+
if "arm" not in platform.processor():
84
from . import instructionset
95

106

0 commit comments

Comments
 (0)