Skip to content

Commit

Permalink
fix workflow bruh
Browse files Browse the repository at this point in the history
  • Loading branch information
rawandahmad698 committed Jan 6, 2024
1 parent a1f79c8 commit e0bf5e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion noble_tls/__version__.py
Original file line number Diff line number Diff line change
@@ -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"
4 changes: 2 additions & 2 deletions noble_tls/utils/asset.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"

Expand Down

0 comments on commit e0bf5e7

Please sign in to comment.