Skip to content
This repository was archived by the owner on May 3, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ Install dependencies (requires Python 3.8+):
pip install -r requirements.txt
```

The requirements file now pins Reticulum (RNS) 1.0.2 and LXMF 0.9.2 so the framework installs the latest stable mesh networking stack by default.

### Running the example server

The Emergency Management example exposes both a Reticulum‑backed service and an HTTP
Expand Down
2 changes: 2 additions & 0 deletions TASK.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,5 @@
READMEs.
- [x] Update Mustache template guidance to cover long-running services, database overrides, and shared client configuration.

## 2025-11-11
- [x] Pin Reticulum (RNS) to 1.0.2 and LXMF to 0.9.2 in project dependencies.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
dependencies = [
"RNS",
"LXMF",
"RNS==1.0.2",
"LXMF==0.9.2",
"SQLAlchemy",
"jsonschema",
"aiosqlite",
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
RNS
LXMF
RNS==1.0.2
LXMF==0.9.2
SQLAlchemy
jsonschema
fastapi
Expand Down