You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(home): show probing interpreter on family snapshot (#59)
* feat(home): show probing interpreter on family snapshot
The "Family snapshot" tile sometimes renders "Not installed" for a
package that is installed in a venv — the dashboard is running under a
different Python. Surface sys.executable and the Python version under
the section heading so the env mismatch is self-diagnosing.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* style: extract sys.version_info local to satisfy ruff E501
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
<codetitle="Dashboard process interpreter. A 'Not installed' result usually means this Python differs from the venv where the package lives.">{{ summary.family_interpreter }}</code>
130
+
{% if summary.family_python_version %}(Python {{ summary.family_python_version }}){% endif %}
131
+
</p>
132
+
{% endif %}
126
133
<divclass="grid grid-4">
127
134
{% for v in summary.family %}
128
135
<articleclass="card layer-card {% if v.importable %}ok{% else %}danger{% endif %}">
0 commit comments