python-codecs: remove pillow simd

This commit is contained in:
Koushik Dutta
2024-11-08 09:42:52 -08:00
parent 832ee0180c
commit fbdefbe06a
5 changed files with 12 additions and 37 deletions

View File

@@ -21,21 +21,10 @@
},
{
"localRoot": "${workspaceFolder}/src",
"remoteRoot": "${config:scrypted.pythonRemoteRoot}"
"remoteRoot": "."
},
]
},
{
"name": "Python: Test",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/src/test.py",
"console": "internalConsole",
"justMyCode": true,
"env": {
"GST_PLUGIN_PATH": "/opt/homebrew/lib/gstreamer-1.0"
}
}
]
}

View File

@@ -1,31 +1,20 @@
{
// docker installation
// "scrypted.debugHost": "scrypted-server",
// "scrypted.serverRoot": "/server",
// lxc installation
// "scrypted.debugHost": "scrypted-server",
// "scrypted.serverRoot": "/root/.scrypted",
// windows installation
// "scrypted.debugHost": "koushik-windows",
// "scrypted.serverRoot": "C:\\Users\\koush\\.scrypted",
"scrypted.debugHost": "scrypted-nvr",
"scrypted.serverRoot": "/server",
// pi local installation
// "scrypted.debugHost": "192.168.2.119",
// "scrypted.serverRoot": "/home/pi/.scrypted",
// local checkout
"scrypted.debugHost": "127.0.0.1",
"scrypted.serverRoot": "/Users/koush/.scrypted",
// "scrypted.debugHost": "127.0.0.1",
// "scrypted.serverRoot": "/Users/koush/.scrypted",
// "scrypted.debugHost": "koushik-winvm",
// "scrypted.serverRoot": "C:\\Users\\koush\\.scrypted",
"scrypted.pythonRemoteRoot": "${config:scrypted.serverRoot}/volume/plugin.zip",
"python.analysis.extraPaths": [
"./node_modules/@scrypted/sdk/types/scrypted_python"
],
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.formatting.provider": "none"
]
}

View File

@@ -1,12 +1,12 @@
{
"name": "@scrypted/python-codecs",
"version": "0.1.96",
"version": "0.1.97",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@scrypted/python-codecs",
"version": "0.1.96",
"version": "0.1.97",
"devDependencies": {
"@scrypted/sdk": "file:../../sdk"
}

View File

@@ -1,6 +1,6 @@
{
"name": "@scrypted/python-codecs",
"version": "0.1.96",
"version": "0.1.97",
"description": "Python Codecs for Scrypted",
"keywords": [
"scrypted",

View File

@@ -3,7 +3,4 @@ numpy>=1.16.2
av>=10.0.0
# in case pyvips fails to load, use a pillow fallback.
# pillow for anything not intel linux, pillow-simd is available on x64 linux
Pillow>=5.4.1; 'linux' not in sys_platform or platform_machine != 'x86_64'
pillow-simd; 'linux' in sys_platform and platform_machine == 'x86_64'
Pillow>=5.4.1