Skip to content

Commit 7f105cf

Browse files
authored
Merge pull request #7 from mdrideout/nov_2025_updates
Cleanup + polish release prep (0.62.0)
2 parents 4fa4c00 + ba94632 commit 7f105cf

114 files changed

Lines changed: 4337 additions & 3205 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.DS_Store

0 Bytes
Binary file not shown.

.github/workflows/publish.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,12 @@ jobs:
1616
contents: read
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020

2121
- name: Set up Python
2222
uses: actions/setup-python@v5
2323
with:
24-
python-version: '3.x'
25-
26-
- name: Install protobuf compiler
27-
run: pip install grpcio-tools
28-
29-
- name: Generate protobuf files
30-
run: make proto
24+
python-version: '3.11'
3125

3226
- name: Build package
3327
run: |

.gitignore

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -171,16 +171,16 @@ cython_debug/
171171
# PyPI configuration file
172172
.pypirc
173173

174-
# Protobuf generated code
175-
# We commit these files to the repository to ensure that the package can be
176-
# installed directly from GitHub without requiring the user to have the
177-
# protobuf compiler installed.
178-
# src/junjo/telemetry/junjo_server/proto_gen/**.*
179-
180-
# Keep the init
181-
# !src/junjo/telemetry/junjo_server/proto_gen/__init__.py
182-
183174
# Misc
184175
.DS_Store
185176
.gitleaks/**
186-
graphviz_out
177+
graphviz_out
178+
179+
# Coding Agents
180+
.claude
181+
# Viberag index
182+
.viberag/
183+
# MCP config (local, not committed)
184+
.cursor/mcp.json
185+
# MCP config (local, not committed)
186+
.zed/settings.json

.pre-commit-config.yaml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.13
1+
3.11

Makefile

Lines changed: 0 additions & 22 deletions
This file was deleted.

README.md

Lines changed: 203 additions & 77 deletions
Large diffs are not rendered by default.

docs/_static/favicon.webp

2.01 KB
Loading
File renamed without changes.

docs/_templates/sidebar/brand.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{% extends "furo/sidebar/brand.html" %}
2+
3+
{% block brand_content %}
4+
{# Check if a logo exists, if so, display it #}
5+
{% if logo_url %}
6+
<img class="sidebar-brand-image" src="{{ logo_url }}" alt="Logo"/>
7+
{% endif %}
8+
9+
{# Use shorttitle if it exists, otherwise fallback to project or html_title #}
10+
<span class="sidebar-brand-text">{{ shorttitle|default(project)|default(docstitle) }}</span>
11+
{% endblock %}

0 commit comments

Comments
 (0)