@glock-org/glock 1.0.29 → 1.0.31
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/package.json +1 -1
- package/scripts/postinstall.js +4 -1
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -160,7 +160,10 @@ async function installPythonDependencies() {
|
|
|
160
160
|
|
|
161
161
|
console.log('Installing Python dependencies...');
|
|
162
162
|
|
|
163
|
-
const packages = [
|
|
163
|
+
const packages = [
|
|
164
|
+
'pillow>=10.0.0',
|
|
165
|
+
'textual>=0.47.0,<1.0.0', // Pin to 0.x - version 1.0+ has breaking changes
|
|
166
|
+
];
|
|
164
167
|
const pipCmd = `${pythonCmd} -m pip install --user --quiet ${packages.join(' ')}`;
|
|
165
168
|
|
|
166
169
|
try {
|