Skip to content

Commit

Permalink
Fixing CI config for Rust install in dash (#570)
Browse files Browse the repository at this point in the history
* Testing out CI changes

* Adding pip upgrade

* Moving pip command

* Linting fix

* Updating pip/timeout

* Testing without Rust install

* Removing redundant line

* Removing correct line
  • Loading branch information
HammadTheOne authored Aug 31, 2021
1 parent 660c099 commit a471d1d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
command: |
python -m venv venv
. venv/bin/activate
pip install --upgrade pip
git clone --depth 1 https://github.com/plotly/dash.git dash-main
cd dash-main && pip install -e .[dev,testing] --progress-bar off && renderer build && cd ../
npm run build
Expand Down Expand Up @@ -95,8 +96,10 @@ jobs:
- run:
name: Install requirements
no_output_timeout: 20m
command: |
. venv/bin/activate
pip install --upgrade pip
pip install --progress-bar off -r tests/requirements.txt --quiet
- save_cache:
Expand Down
4 changes: 2 additions & 2 deletions dash_bio/component_factory/_clustergram.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,11 +280,11 @@ def __init__(
else:
self._col_group_marker = col_group_marker
if tick_font is None:
self._tick_font = dict()
self._tick_font = {}
else:
self._tick_font = tick_font
if annotation_font is None:
self._annotation_font = dict()
self._annotation_font = {}
else:
self._annotation_font = annotation_font
self._paper_bg_color = paper_bg_color
Expand Down

0 comments on commit a471d1d

Please sign in to comment.