voicecc 1.2.4 → 1.2.5

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.
Files changed (2) hide show
  1. package/bin/voicecc.js +2 -2
  2. package/package.json +1 -1
package/bin/voicecc.js CHANGED
@@ -151,9 +151,9 @@ function ensurePython() {
151
151
 
152
152
  function ensureVenvModule(systemPython) {
153
153
  try {
154
- execSync(`${systemPython} -c "import venv" 2>&1`, { encoding: "utf-8" });
154
+ execSync(`${systemPython} -c "import ensurepip" 2>&1`, { encoding: "utf-8" });
155
155
  return;
156
- } catch { /* venv not available */ }
156
+ } catch { /* ensurepip not available — venv creation will fail */ }
157
157
 
158
158
  if (process.platform !== "linux") {
159
159
  console.error("ERROR: Python venv module is missing.");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "voicecc",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "Voice Agent Platform running on Claude Code -- create and deploy conversational voice agents with ElevenLabs STT/TTS and VAD",
5
5
  "repository": {
6
6
  "type": "git",