@meridiona/meridian-darwin-arm64 1.23.3 → 1.23.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.
- package/VERSION +1 -1
- package/bin/meridian +0 -0
- package/package.json +1 -1
- package/scripts/install-from-bundle.sh +16 -4
- package/services/pyproject.toml +1 -1
- package/ui.tar.gz +0 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.23.
|
|
1
|
+
1.23.5
|
package/bin/meridian
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meridiona/meridian-darwin-arm64",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.5",
|
|
4
4
|
"description": "Prebuilt Meridian app for macOS arm64 (daemon binary + dashboard + Python services). Installed via @meridiona/meridian.",
|
|
5
5
|
"homepage": "https://github.com/Meridiona/meridian",
|
|
6
6
|
"repository": {
|
|
@@ -304,9 +304,21 @@ if [[ -f "${VENV_TARBALL}" ]]; then
|
|
|
304
304
|
else
|
|
305
305
|
info "Extracting pre-built Python venv ($(du -sh "${VENV_TARBALL}" | cut -f1) — no PyPI download required)…"
|
|
306
306
|
rm -rf "${VENV}"
|
|
307
|
-
#
|
|
308
|
-
#
|
|
309
|
-
|
|
307
|
+
# The tarball is compiled for Python 3.11 (package-release.sh enforces this).
|
|
308
|
+
# The venv MUST use exactly Python 3.11 or compiled extensions (.so files with
|
|
309
|
+
# cpython-311 ABI tags) will fail to import on any other interpreter version.
|
|
310
|
+
# Prefer the system python3.11, then uv-managed 3.11, then install it via uv.
|
|
311
|
+
_tarball_python=""
|
|
312
|
+
if command -v python3.11 >/dev/null 2>&1; then
|
|
313
|
+
_tarball_python="$(command -v python3.11)"
|
|
314
|
+
elif "${UV_BIN}" python find 3.11 >/dev/null 2>&1; then
|
|
315
|
+
_tarball_python="$("${UV_BIN}" python find 3.11)"
|
|
316
|
+
else
|
|
317
|
+
info "Installing Python 3.11 (pre-built venv requires it — one-time download)…"
|
|
318
|
+
"${UV_BIN}" python install 3.11
|
|
319
|
+
_tarball_python="$("${UV_BIN}" python find 3.11)"
|
|
320
|
+
fi
|
|
321
|
+
"${UV_BIN}" venv --python "${_tarball_python}" "${VENV}" 2>/dev/null
|
|
310
322
|
# Determine the Python version subdirectory (e.g. python3.11).
|
|
311
323
|
_py_dir="$(ls "${VENV}/lib/" | grep '^python' | head -1)"
|
|
312
324
|
mkdir -p "${VENV}/lib/${_py_dir}/site-packages"
|
|
@@ -346,7 +358,7 @@ if [[ "${_macos_major:-0}" -ge 26 ]]; then
|
|
|
346
358
|
ok "apple-fm-sdk already installed — Apple Intelligence will be used"
|
|
347
359
|
else
|
|
348
360
|
info "macOS ${_macos_major} detected — installing apple-fm-sdk for Apple Intelligence (no MLX model download needed)…"
|
|
349
|
-
if "${VENV}/bin/
|
|
361
|
+
if "${UV_BIN}" pip install --python "${VENV}/bin/python" --quiet "apple-fm-sdk" 2>/dev/null; then
|
|
350
362
|
ok "apple-fm-sdk installed — Apple Intelligence will be used"
|
|
351
363
|
else
|
|
352
364
|
warn "apple-fm-sdk install failed — MLX model download will be used instead"
|
package/services/pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "meridian-agents"
|
|
7
|
-
version = "1.23.
|
|
7
|
+
version = "1.23.5"
|
|
8
8
|
description = "Meridian agents — hermes task linking and Jira progress updates for meridian.db"
|
|
9
9
|
requires-python = ">=3.11"
|
|
10
10
|
authors = [{ name = "Meridiona" }]
|
package/ui.tar.gz
CHANGED
|
Binary file
|