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 79021e3 commit 4bccffcCopy full SHA for 4bccffc
setup.py
@@ -42,16 +42,19 @@ def get_platform(self):
42
osname = platform.system()
43
mach = platform.machine()
44
arch, _ = platform.architecture()
45
+
46
if osname == 'Linux':
47
if mach.startswith('arm'):
48
if arch == '32bit':
49
mach = 'arm'
50
elif arch == '64bit':
51
mach = 'arm64'
52
return osname, mach, 'libziti.so'
- elif osname == 'Darwin':
53
54
+ if osname == 'Darwin':
55
return osname, mach, 'libziti.dylib'
- elif osname == 'Windows':
56
57
+ if osname == 'Windows':
58
return osname, mach, 'ziti.dll'
59
60
def get_sdk_version(self):
0 commit comments