code-data-ark 2.0.9__tar.gz → 2.0.10__tar.gz
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.
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/PKG-INFO +1 -1
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/__init__.py +1 -1
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/kernel/pmf_kernel.py +2 -5
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/pyproject.toml +1 -1
- code_data_ark-2.0.10/version +1 -0
- code_data_ark-2.0.9/version +0 -1
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/.flake8 +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/.github/workflows/ci.yml +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/.gitignore +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/bin/release.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/__main__.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/kernel/__init__.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/kernel/control_db.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/kernel/paths.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/kernel/selfcheck.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/pipeline/__init__.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/pipeline/embed.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/pipeline/extract.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/pipeline/ingest.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/pipeline/parse_edits.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/pipeline/reconstruct.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/pipeline/watcher.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/ui/__init__.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/ui/cli.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/cda/ui/web.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/changelog.md +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/contributing.md +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/docs/architecture.md +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/docs/examples/usage.md +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/docs/pmf_kernel.md +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/docs/roadmap.md +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/license +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/makefile +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/readme.md +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/tests/test_basic.py +0 -0
- {code_data_ark-2.0.9 → code_data_ark-2.0.10}/tests/test_selfcheck.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code-data-ark
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.10
|
|
4
4
|
Summary: Code Data Ark — local observability and intelligence platform for VS Code + Copilot Chat sessions
|
|
5
5
|
Project-URL: Homepage, https://github.com/goCosmix/cda
|
|
6
6
|
Project-URL: Repository, https://github.com/goCosmix/cda.git
|
|
@@ -172,14 +172,11 @@ class ServiceSpec:
|
|
|
172
172
|
allowed_actions: Optional[List[str]] = None
|
|
173
173
|
|
|
174
174
|
def build_command(self, options: Dict[str, str] = None) -> List[str]:
|
|
175
|
-
# Use the Python that owns this running cda installation, not sys.executable
|
|
176
|
-
# (sys.executable may be the system Python with stale .pth files on sys.path)
|
|
177
|
-
python = Path(sys.executable).resolve()
|
|
178
175
|
if self.service_id == "ui":
|
|
179
176
|
host = options.get("host", DEFAULT_HOST) if options else DEFAULT_HOST
|
|
180
177
|
port = options.get("port", DEFAULT_PORT) if options else DEFAULT_PORT
|
|
181
178
|
return [
|
|
182
|
-
|
|
179
|
+
sys.executable,
|
|
183
180
|
"-c",
|
|
184
181
|
(
|
|
185
182
|
"import cda.ui.web as w; "
|
|
@@ -188,7 +185,7 @@ class ServiceSpec:
|
|
|
188
185
|
]
|
|
189
186
|
|
|
190
187
|
if self.service_id == "watcher":
|
|
191
|
-
return [
|
|
188
|
+
return [sys.executable, "-m", "cda.pipeline.watcher"]
|
|
192
189
|
|
|
193
190
|
if self.command is not None:
|
|
194
191
|
return list(self.command)
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "code-data-ark"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.10"
|
|
8
8
|
description = "Code Data Ark — local observability and intelligence platform for VS Code + Copilot Chat sessions"
|
|
9
9
|
readme = "readme.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.0.10
|
code_data_ark-2.0.9/version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.0.9
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|