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 f97a73e commit 66257e4Copy full SHA for 66257e4
async_tls_client/__version__.py
@@ -6,6 +6,6 @@
6
7
__title__ = "async_tls_client"
8
__description__ = "Fork of tls-client with asyncio."
9
-__version__ = "1.0.2"
+__version__ = "1.0.3"
10
__author__ = "Diprog"
11
__license__ = "MIT"
async_tls_client/cffi.py
@@ -1,11 +1,7 @@
1
-from sys import platform
2
-from platform import machine
3
import ctypes
4
import os
5
-
-from .update_binaries import update_binaries
-update_binaries()
+from platform import machine
+from sys import platform
if platform == 'darwin':
file_ext = '-arm64.dylib' if machine() == "arm64" else '-x86.dylib'
async_tls_client/update_binaries.py
0 commit comments