Compare commits

...

4 Commits

Author SHA1 Message Date
semantic-release e48deaeecf chore(release): 0.2.12 [skip ci] 2025-02-14 04:33:35 +00:00
phernandez 854cf8302e fix: fix cx_freeze options for installer 2025-02-13 22:31:50 -06:00
semantic-release 6e4a53cdfa chore(release): 0.2.11 [skip ci] 2025-02-14 04:25:18 +00:00
phernandez 2e215fe83c fix: ci installer app fix #37 2025-02-13 22:23:40 -06:00
4 changed files with 24 additions and 12 deletions
+1 -3
View File
@@ -79,10 +79,8 @@ jobs:
- name: Build macOS installer
run: |
cd installer
uv venv
uv pip install -e "..[dev]"
# Use system Python paths to match local environment
PYTHONHOME=/Library/Frameworks/Python.framework/Versions/3.12 \
PYTHONPATH=/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12 \
uv run python setup.py bdist_mac
xattr -dr com.apple.quarantine "build/Basic Memory Installer.app"
+16
View File
@@ -1,6 +1,22 @@
# CHANGELOG
## v0.2.12 (2025-02-14)
### Bug Fixes
- Fix cx_freeze options for installer
([`854cf83`](https://github.com/basicmachines-co/basic-memory/commit/854cf8302e2f83578030db05e29b8bdc4348795a))
## v0.2.11 (2025-02-14)
### Bug Fixes
- Ci installer app fix #37
([`2e215fe`](https://github.com/basicmachines-co/basic-memory/commit/2e215fe83ca421b921186c7f1989dc2cb5cca278))
## v0.2.10 (2025-02-14)
### Bug Fixes
+6 -8
View File
@@ -1,21 +1,19 @@
from cx_Freeze import setup, Executable
import sys
# Build options for all platforms
# Build options for all platforms - keep it simple and don't exclude too much
build_exe_options = {
"packages": ["json", "pathlib"],
"excludes": [
"tkinter",
"unittest",
"email",
"html",
"http",
"xml",
"pydoc",
"_tkinter",
"test"
],
"include_msvcr": False,
# Prevent duplication across dirs
"bin_includes": [],
"bin_excludes": [],
"zip_include_packages": ["*"],
"zip_exclude_packages": [],
}
# Platform-specific options
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "basic-memory"
version = "0.2.10"
version = "0.2.12"
description = "Local-first knowledge management combining Zettelkasten with knowledge graphs"
readme = "README.md"
requires-python = ">=3.12.1"