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 2ea387d commit c8cfa14Copy full SHA for c8cfa14
setup.py
@@ -26,12 +26,12 @@ def run(self):
26
sys.version_info.minor)
27
system = platform.system()
28
if system == 'Linux':
29
- platform = 'x86_64-linux-gnu'
+ usr_platform = 'x86_64-linux-gnu'
30
else:
31
raise Exception('This lib is only supporting Linux for now.')
32
download_url = url_template.format(tag=version_tag,
33
py_ver=py_version,
34
- platform=platform)
+ platform=usr_platform)
35
dist = os.path.join(self.build_lib, 'py_sourcemap/py_sourcemap.so')
36
if not local_build:
37
with open(dist, 'wb') as f:
0 commit comments