Skip to content

Commit

Permalink
Merge pull request #537 from nhahn7/streaming
Browse files Browse the repository at this point in the history
ENH Add streaming functionality to Synergistic Forest
  • Loading branch information
PSSF23 authored May 19, 2022
2 parents ca15f3b + 87fab73 commit d44182c
Show file tree
Hide file tree
Showing 11 changed files with 2,555 additions and 823 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: v2-<< parameters.version >>-min-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v3-<< parameters.version >>-min-dependency-cache-{{ checksum "dev-requirements.txt" }}
- run:
name: install python dependencies
command: |
Expand All @@ -22,7 +22,7 @@ jobs:
pip install --upgrade pip
pip install -r dev-requirements.txt
- save_cache:
key: v2-<< parameters.version >>-min-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v3-<< parameters.version >>-min-dependency-cache-{{ checksum "dev-requirements.txt" }}
paths:
- "venv"
- run:
Expand All @@ -45,7 +45,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v3-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
- run:
name: install python dependencies
command: |
Expand All @@ -54,7 +54,7 @@ jobs:
pip install -r dev-requirements.txt
pip install -e .
- save_cache:
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v3-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
paths:
- "venv"
- run:
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v3-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
- run:
name: install python dependencies
command: |
Expand All @@ -91,7 +91,7 @@ jobs:
pip install -r dev-requirements.txt
pip install -e .
- save_cache:
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v3-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
paths:
- "venv"
- run:
Expand Down
Loading

0 comments on commit d44182c

Please sign in to comment.