adelie-ai 0.2.8 → 0.2.9

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.
@@ -13,4 +13,4 @@ def _get_version() -> str:
13
13
  pass
14
14
  return "0.0.0"
15
15
 
16
- __version__ = "0.2.8"
16
+ __version__ = "0.2.9"
package/bin/adelie.js CHANGED
@@ -74,6 +74,8 @@ const child = spawn(PYTHON_BIN, [CLI_PY, ...process.argv.slice(2)], {
74
74
  ...process.env,
75
75
  ADELIE_PKG_ROOT: PKG_ROOT,
76
76
  ADELIE_CWD: process.cwd(),
77
+ // Ensure 'adelie' package is importable regardless of install method
78
+ PYTHONPATH: PKG_ROOT + (process.env.PYTHONPATH ? path.delimiter + process.env.PYTHONPATH : ""),
77
79
  },
78
80
  });
79
81
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adelie-ai",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Adelie — Self-Communicating Autonomous AI Loop CLI",
5
5
  "bin": {
6
6
  "adelie": "bin/adelie.js"