rcf3 0.5.1

Streaming anomaly detection algorithms in Rust with Python bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
import nox

python = ["3.11", "3.14", "3.14t"]
venv_backend = "uv"


@nox.session(
    python=python,
    venv_backend=venv_backend,
)
def test(session: nox.Session) -> None:
    session.install(".[test]")
    session.run("pytest", "-v", *session.posargs)