Skip to content

Commit 00a52eb

Browse files
committed
Use absolute image URLs for PyPI rendering
1 parent ae63654 commit 00a52eb

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="assets/orbiter-banner.png" alt="Orbiter" width="100%">
2+
<img src="https://raw.githubusercontent.com/borghei/orbiter/main/assets/orbiter-banner.png" alt="Orbiter" width="100%">
33
</p>
44

55
<p align="center">
@@ -162,7 +162,7 @@ Strategy: Hierarchical Risk Parity
162162
Launch with `orbiter dashboard` and open http://localhost:8501.
163163

164164
<p align="center">
165-
<img src="assets/screenshots/allocation-metrics.png" alt="Dashboard — Allocation and Metrics" width="100%">
165+
<img src="https://raw.githubusercontent.com/borghei/orbiter/main/assets/screenshots/allocation-metrics.png" alt="Dashboard — Allocation and Metrics" width="100%">
166166
</p>
167167

168168
The dashboard provides:
@@ -173,7 +173,7 @@ The dashboard provides:
173173
- **Efficient frontier** — interactive scatter plot showing the risk-return tradeoff
174174

175175
<p align="center">
176-
<img src="assets/screenshots/efficient-frontier.png" alt="Efficient Frontier" width="100%">
176+
<img src="https://raw.githubusercontent.com/borghei/orbiter/main/assets/screenshots/efficient-frontier.png" alt="Efficient Frontier" width="100%">
177177
</p>
178178

179179
- **Performance chart** — cumulative returns vs equal-weight benchmark

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "orbiter-crypto"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "Lightweight crypto portfolio optimizer. Efficient frontier, HRP, Risk Parity — with real risk metrics and interactive charts."
55
readme = "README.md"
66
license = {file = "LICENSE"}

src/orbiter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Orbiter — Lightweight crypto portfolio optimizer."""
22

3-
__version__ = "0.2.0"
3+
__version__ = "0.2.1"
44

55
from orbiter.data import PriceLoader as PriceLoader
66
from orbiter.metrics import compute_metrics as compute_metrics

0 commit comments

Comments
 (0)