Skip to content

Commit 46f6ce2

Browse files
v2.9.0 — 11 advanced analytics modules
1 parent 5eb35e5 commit 46f6ce2

5 files changed

Lines changed: 2 additions & 6 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "spirescope"
3-
version = "2.8.1"
3+
version = "2.9.0"
44
description = "Spirescope — a local web dashboard for Slay the Spire 2. Card/relic/enemy lookup, deck analysis, live run tracking, and strategy guides."
55
readme = "README.md"
66
license = {text = "MIT"}

sts2/behavior.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""Behavior analysis — tilt detection, anti-patterns, decision quality."""
22
import math
33

4-
54
# ── Tilt Detection ──
65

76
def detect_tilt(runs, session_window_hours=4):

sts2/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Single source of truth for the version fallback (used when importlib.metadata
77
# can't find the package, e.g. in PyInstaller bundles). Keep in sync with
88
# pyproject.toml [project] version.
9-
VERSION = "2.8.1"
9+
VERSION = "2.9.0"
1010

1111
# Project paths
1212
PROJECT_ROOT = Path(__file__).parent

sts2/hypothesis.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
"""Hypothesis Lab — formally test strategic beliefs with Bayesian statistics."""
22
import json
3-
import math
43
import time
5-
from pathlib import Path
64

75
from sts2.config import DATA_DIR
86

sts2/pheromone.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""Pheromone strategy memory — track which strategies you use vs forget."""
22
import json
33
import time
4-
from pathlib import Path
54

65
from sts2.config import DATA_DIR
76

0 commit comments

Comments
 (0)