This commit is contained in:
flaskfarm
2022-10-17 21:12:01 +09:00
parent 01780695f0
commit 2f97750ae7
5 changed files with 5 additions and 4 deletions

3
.gitignore vendored
View File

@@ -3,8 +3,7 @@ __pycache__/
*.py[co] *.py[co]
*$py.class *$py.class
# C extensions
*.so
# Distribution / packaging # Distribution / packaging
.Python .Python

View File

@@ -1 +1 @@
VERSION="4.0.15" VERSION="4.0.16"

View File

@@ -10,6 +10,7 @@ from . import logger
class SupportSC: class SupportSC:
LIBRARY_LOADING = False LIBRARY_LOADING = False
"""
try: try:
if platform.system() == 'Linux': if platform.system() == 'Linux':
if (platform.platform().find('86') == -1 and platform.platform().find('64') == -1) or platform.platform().find('arch') != -1 or platform.platform().find('arm') != -1: if (platform.platform().find('86') == -1 and platform.platform().find('64') == -1) or platform.platform().find('arch') != -1 or platform.platform().find('arm') != -1:
@@ -22,6 +23,7 @@ class SupportSC:
LIBRARY_LOADING = True LIBRARY_LOADING = True
except: except:
pass pass
"""
@classmethod @classmethod

Binary file not shown.