Skip to content

Commit

Permalink
Merge pull request #276 from Point72/tkp/condawin
Browse files Browse the repository at this point in the history
Remove note about lack of windows support on conda, tweak some language in docs
  • Loading branch information
timkpaine authored Jun 11, 2024
2 parents fda7a19 + f7c9d13 commit ab390db
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/wiki/get-started/First-Steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
3 changes: 0 additions & 3 deletions docs/wiki/get-started/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion examples/01_basics/e2_ticking.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ab390db

Please sign in to comment.