@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glock-org/glock",
3
- "version": "1.0.29",
3
+ "version": "1.0.31",
4
4
  "description": "Glock - AI Coding Assistant CLI",
5
5
  "keywords": [
6
6
  "glock",
@@ -160,7 +160,10 @@ async function installPythonDependencies() {
160
160
 
161
161
  console.log('Installing Python dependencies...');
162
162
 
163
- const packages = ['pillow>=10.0.0'];
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 {