Skip to content

Commit

Permalink
Merge pull request #437 from plotly/1003-dash-ie11
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc-Andre-Rivet authored Nov 15, 2019
2 parents d56f0b7 + 9ee793a commit 6ca6b8a
Show file tree
Hide file tree
Showing 21 changed files with 491 additions and 45 deletions.
9 changes: 0 additions & 9 deletions .babelrc

This file was deleted.

12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- run:
name: Install package.json
command: npm i
command: npm ci

- save_cache:
key: deps1-{{ .Branch }}-{{ checksum "package.json" }}
Expand All @@ -42,7 +42,7 @@ jobs:
python -m venv venv
. venv/bin/activate
pip install --upgrade pip
pip install dash>=0.40.0
pip install dash>=1.6.1
npm run build:py
- run:
Expand All @@ -69,7 +69,7 @@ jobs:
- run: echo $PYVERSION > ver.txt

- restore_cache:
key: deps1-{{ .Branch }}-{{ checksum "tests/requirements.txt" }}-{{ checksum "ver.txt" }}
key: deps1-{{ .Branch }}-{{ checksum "requirements.txt" }}-{{ checksum "tests/requirements.txt" }}-{{ checksum "ver.txt" }}

- run:
name: Create virtualenv
Expand All @@ -85,7 +85,7 @@ jobs:
pip install dash[testing]
- save_cache:
key: deps1-{{ .Branch }}-{{ checksum "tests/requirements.txt" }}-{{ checksum "ver.txt" }}
key: deps1-{{ .Branch }}-{{ checksum "requirements.txt" }}-{{ checksum "tests/requirements.txt" }}-{{ checksum "ver.txt" }}
paths:
- venv

Expand All @@ -109,8 +109,8 @@ jobs:
. venv/bin/activate
pip install --upgrade pip
pip install -r tests/requirements.txt
npm i
npm run build:all-dev
npm ci
npm run build:dev
pip install -e .
pytest tests/integration
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.4.2] - 2019-11-15
### Fixed
* [#437](https://github.com/plotly/dash-bio/pull/437) Fix IE11 compatibility issues and ES5 compatibility and validation

## [0.4.1] - 2019-11-08
### Fixed
* [#434](https://github.com/plotly/dash-bio/pull/434) Fixed FornaContainer selector issue, in which FornaContainer styles were being applied to all svg elements on the page.
Expand Down
9 changes: 9 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = {
presets: [
'@babel/preset-env',
'@babel/preset-react'
],
plugins: [
'@babel/plugin-syntax-dynamic-import'
]
}
6 changes: 3 additions & 3 deletions dash_bio/async~alignment.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dash_bio/async~circos.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion dash_bio/async~ideogram.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/async~moleculeviewer2.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/async~moleculeviewer3.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/async~needle.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dash_bio/async~needleplot.js

This file was deleted.

Loading

0 comments on commit 6ca6b8a

Please sign in to comment.