diff --git a/noble_tls/__version__.py b/noble_tls/__version__.py index 765ee81..28a7560 100644 --- a/noble_tls/__version__.py +++ b/noble_tls/__version__.py @@ -1,5 +1,5 @@ __title__ = "Noble TLS" __description__ = "Advanced TLS/SSL wrapper for Python" -__version__ = "0.0.84" +__version__ = "0.0.85" __author__ = "Rawand Ahmed Shaswar" __license__ = "MIT" diff --git a/noble_tls/utils/asset.py b/noble_tls/utils/asset.py index 39d6eab..ce06306 100644 --- a/noble_tls/utils/asset.py +++ b/noble_tls/utils/asset.py @@ -58,8 +58,8 @@ def generate_asset_name( file_extension = '.so' # Default to .so for other Unix-like systems # Handle special case for x86 architecture on non-Windows systems - if system_os != 'windows' and 'x86' in architecture: - asset_arch = 'armv7' + if system_os == 'darwin' and 'x86' in architecture: + asset_arch = 'amd64' return f"{custom_part}-{system_os}-{asset_arch}-v{version}{file_extension}"