@geravant/sinain 1.6.3 → 1.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/launcher.js +1 -1
- package/package.json +1 -1
- package/sense_client/requirements.txt +1 -0
package/launcher.js
CHANGED
|
@@ -129,7 +129,7 @@ async function main() {
|
|
|
129
129
|
try {
|
|
130
130
|
const depCheck = IS_WINDOWS
|
|
131
131
|
? 'python3 -c "import PIL; import skimage"'
|
|
132
|
-
: 'python3 -c "import PIL; import skimage; import Quartz"';
|
|
132
|
+
: 'python3 -c "import PIL; import skimage; import Quartz; import Vision"';
|
|
133
133
|
execSync(depCheck, { stdio: "pipe" });
|
|
134
134
|
} catch {
|
|
135
135
|
log("Installing sense_client Python dependencies...");
|
package/package.json
CHANGED
|
@@ -4,6 +4,7 @@ numpy>=1.24
|
|
|
4
4
|
pytesseract>=0.3
|
|
5
5
|
requests>=2.31
|
|
6
6
|
pyobjc-framework-Quartz>=10.0; sys_platform == "darwin"
|
|
7
|
+
pyobjc-framework-Vision>=10.0; sys_platform == "darwin"
|
|
7
8
|
mss>=9.0; sys_platform == "win32"
|
|
8
9
|
psutil>=5.9; sys_platform == "win32"
|
|
9
10
|
winrt-Windows.Media.Ocr>=2.0; sys_platform == "win32"
|