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 9a6462b commit ad03aa1Copy full SHA for ad03aa1
README.md
@@ -23,6 +23,7 @@ The script will keep updated with the newest releases of the pre-compiled module
23
24
| `mpegCoder` | Uploaded |
25
| :-----------: | :--------: |
26
+| `3.2.3` | :heavy_check_mark: |
27
| `3.2.2` | :heavy_check_mark: |
28
| `3.2.1` | :heavy_check_mark: |
29
| `3.2.0` | :heavy_check_mark: |
scripts/init_linux.py
@@ -17,7 +17,7 @@
17
import ctypes
18
from . import webtools
19
20
-__version__ = '3.2.2'
+__version__ = '3.2.3'
21
__inner_version__ = '3.2.0'
22
PY_VERSION = sysconfig.get_python_version()
@@ -75,7 +75,7 @@ def add_dependencies(self, *names):
75
)
76
if (
77
(not os.path.isdir(os.path.join(basedir, 'lib'))) or # noqa: W504
78
- (not os.path.isdir(os.path.join(basedir, 'lib', 'libcrypto.so.1.1')))
+ (not os.path.isfile(os.path.join(basedir, 'lib', 'libcrypto.so.1.1')))
79
): # Fix a missing dependency problem caused by libssh.
80
webtools.download_tarball(
81
'cainmagi', 'FFmpeg-Encoder-Decoder-for-Python',
scripts/init_win.py
@@ -16,7 +16,7 @@
16
import sysconfig
setup.py
@@ -43,7 +43,7 @@ def find_packages(path=('.', ), prefix=''):
43
yield name
44
45
46
-VERSION = '3.2.2'
+VERSION = '3.2.3'
47
DEPENDENCY_VERSION = '3.2.0'
48
PUBLISH_VERSION = ''
49
# PUBLISH_VERSION Should begin from '', each failed attmpt, it need to be
@@ -119,7 +119,7 @@ def fetch_dependencies(python_ver='3.6', is_linux=False, target_path='.'):
119
120
121
(not os.path.isdir(os.path.join(target_path, 'lib'))) or # noqa: W504
122
- (not os.path.isdir(os.path.join(target_path, 'lib', 'libcrypto.so.1.1')))
+ (not os.path.isfile(os.path.join(target_path, 'lib', 'libcrypto.so.1.1')))
123
124
125
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments