From 21fba809b62c166bac84e963c711d3191489f791 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Mon, 10 Jun 2024 22:54:49 -0400 Subject: [PATCH 1/3] Remove note about lack of windows support on conda Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com> --- docs/wiki/get-started/Installation.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/wiki/get-started/Installation.md b/docs/wiki/get-started/Installation.md index 3a8f4a0ad..5acbb6a97 100644 --- a/docs/wiki/get-started/Installation.md +++ b/docs/wiki/get-started/Installation.md @@ -10,9 +10,6 @@ pip install csp ## Install with `conda` -> \[!WARNING\] -> Currently, only supported on MacOS and Linux - ```bash conda install csp --channel conda-forge ``` From ec872a7893303354fc403c23999bde5ea22ed6c3 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Mon, 10 Jun 2024 22:56:09 -0400 Subject: [PATCH 2/3] Small change cherry-picked from other PR Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com> --- examples/01_basics/e2_ticking.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/01_basics/e2_ticking.py b/examples/01_basics/e2_ticking.py index 5377027f8..04a09cc80 100644 --- a/examples/01_basics/e2_ticking.py +++ b/examples/01_basics/e2_ticking.py @@ -15,7 +15,7 @@ def accum(val: ts[int]) -> ts[int]: s_sum = 0 if csp.ticked(val): s_sum += val - return val + return s_sum @csp.graph From f7c9d138146b8969c6eb8ba8d25a24ffce0cd16f Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Mon, 10 Jun 2024 23:28:16 -0400 Subject: [PATCH 3/3] small copy fix Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com> --- docs/wiki/get-started/First-Steps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/wiki/get-started/First-Steps.md b/docs/wiki/get-started/First-Steps.md index b70342650..5cdf65fba 100644 --- a/docs/wiki/get-started/First-Steps.md +++ b/docs/wiki/get-started/First-Steps.md @@ -39,7 +39,7 @@ def spread(bid: ts[float], ask: ts[float]) -> ts[float]: The `bid` and `ask` values are expected to be Time Series values. > \[!IMPORTANT\] -> csp nodes is strictly typed, and the type is enforced by the C++ engine. +> csp nodes are strictly typed, and the type is enforced by the C++ engine. This node needs to be executed each time the `ask` and `bid` values change, so we use the following built-in nodes: