Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek authored Jul 4, 2018
1 parent bbf383e commit e82ad40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auditwheel/policy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
linkage = _platform_module.architecture()[1]

# https://docs.python.org/3/library/platform.html#platform.architecture
bits = 8 if sys.maxsize > 2 ** 32 else 4
bits = 8 * (8 if sys.maxsize > 2 ** 32 else 4)

_PLATFORM_REPLACEMENT_MAP = {
'manylinux1_x86_64': ['linux_x86_64'],
Expand Down

0 comments on commit e82ad40

Please sign in to comment.