chatwire 0.2.1__tar.gz → 0.2.2__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.
- {chatwire-0.2.1/chatwire.egg-info → chatwire-0.2.2}/PKG-INFO +1 -1
- {chatwire-0.2.1 → chatwire-0.2.2}/_version.py +1 -1
- {chatwire-0.2.1 → chatwire-0.2.2/chatwire.egg-info}/PKG-INFO +1 -1
- {chatwire-0.2.1 → chatwire-0.2.2}/chatwire_cli.py +7 -1
- {chatwire-0.2.1 → chatwire-0.2.2}/LICENSE +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/README.md +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/bridge.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/chat_db.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/chat_send.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/chatwire.egg-info/SOURCES.txt +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/chatwire.egg-info/dependency_links.txt +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/chatwire.egg-info/entry_points.txt +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/chatwire.egg-info/requires.txt +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/chatwire.egg-info/top_level.txt +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/config.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/contacts.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/echo_log.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/integrations/__init__.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/integrations/base.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/integrations/telegram/__init__.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/integrations/web/__init__.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/integrations/webhook/__init__.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/migrations/0001_initial.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/migrations/0002_integration_split.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/migrations/__init__.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/prefix.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/pyproject.toml +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/setup.cfg +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/templates/__init__.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/templates/launchd/bridge.plist.template +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/templates/launchd/keepawake.plist.template +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/templates/launchd/web.plist.template +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/web/main.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/web/setup_wizard.py +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/web/static/favicon.svg +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/web/static/style.css +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/web/static/sw.js +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/web/static/update-check.js +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/web/templates/_conversation.html +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/web/templates/_conversations.html +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/web/templates/_settings.html +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/web/templates/_whitelist_rows.html +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/web/templates/index.html +0 -0
- {chatwire-0.2.1 → chatwire-0.2.2}/whitelist.py +0 -0
|
@@ -130,7 +130,13 @@ def _label(label_prefix: str, name: str) -> str:
|
|
|
130
130
|
def cmd_install_agents(args: argparse.Namespace) -> int:
|
|
131
131
|
_require_macos()
|
|
132
132
|
install_dir = Path(args.install_dir).resolve()
|
|
133
|
-
|
|
133
|
+
# NOT .resolve() — on macOS framework Python (python.org), the pipx
|
|
134
|
+
# venv's bin/python3.X is a symlink to the framework binary, and
|
|
135
|
+
# resolve() would dereference it. The plist needs the VENV-form path
|
|
136
|
+
# so that Python boots with sys.prefix pointing at the venv (and so
|
|
137
|
+
# finds the venv's site-packages); invoking the framework binary
|
|
138
|
+
# directly skips the venv and the import of fastapi etc. fails.
|
|
139
|
+
venv_python = Path(args.venv_python).absolute()
|
|
134
140
|
log_dir = Path(args.log_dir).resolve()
|
|
135
141
|
label_prefix = args.label_prefix
|
|
136
142
|
|
|
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
|
|
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
|