agent-apprenticeship 0.1.4 → 0.1.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.
@@ -120,7 +120,7 @@ function runQuiet(command, args, label, timeoutMs) {
120
120
  console.error(message);
121
121
  }
122
122
  const out = [result.stdout, result.stderr].filter(Boolean).join("\n").trim();
123
- if (out) console.error(out.slice(-4000));
123
+ if (out) console.error(out.slice(-8000));
124
124
  process.exit(result.status || 1);
125
125
  }
126
126
  }
@@ -157,10 +157,10 @@ function ensureRuntime(python) {
157
157
  runQuiet(python, ["-m", "venv", venvDir], "create the Python environment", 120000);
158
158
  runQuiet(py, [
159
159
  "-m", "pip", "install",
160
- "-q",
161
160
  "--disable-pip-version-check",
162
161
  "--progress-bar", "off",
163
162
  "--no-input",
163
+ "--no-build-isolation",
164
164
  "--retries", "10",
165
165
  "--timeout", "60",
166
166
  packageRoot
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-apprenticeship",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "The living ecosystem for AI agents learning from real-world work through iterative loops and training-signal exchange.",
5
5
  "license": "MIT",
6
6
  "repository": {
package/pyproject.toml CHANGED
@@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "agent-apprenticeship"
7
- version = "0.1.4"
7
+ version = "0.1.5"
8
8
  description = "Open framework for turning real agent work into transferable agent experience"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
11
- dependencies = ["pydantic>=2", "typer>=0.12", "openai>=1.0"]
11
+ dependencies = ["pydantic>=2.7,<3", "typer>=0.12,<1", "openai>=2,<3"]
12
12
 
13
13
  [project.optional-dependencies]
14
- llm = ["openai>=1.0"]
14
+ llm = ["openai>=2,<3"]
15
15
  test = ["pytest>=8"]
16
16
 
17
17
  [project.scripts]
@@ -1,2 +1,2 @@
1
1
  """Agent Apprenticeship framework."""
2
- __version__ = "0.1.4"
2
+ __version__ = "0.1.5"