Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix forna stylesheet #434

Merged
merged 18 commits into from
Nov 8, 2019
Merged
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
- run:
name: Check current version of node
command: node -v

- restore_cache:
key: deps1-{{ .Branch }}-{{ checksum "package.json" }}

Expand Down Expand Up @@ -67,9 +66,10 @@ jobs:

steps:
- checkout
- run: echo $PYVERSION > ver.txt

- restore_cache:
key: deps1-{{ .Branch }}-{{ checksum "tests/requirements.txt" }}
key: deps1-{{ .Branch }}-{{ 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" }}
key: deps1-{{ .Branch }}-{{ checksum "tests/requirements.txt" }}-{{ checksum "ver.txt" }}
paths:
- venv

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.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.

## [0.4.0] - 2019-11-05
### Added
* [#430](https://github.com/plotly/dash-bio/pull/430) Async AlignmentChart, Circos, Ideogram, Molecule2dViewer, Molecule3dViewer, NeedlePlot, OncoPrint, SequenceViewwer and Speck components
Expand Down
2 changes: 1 addition & 1 deletion dash_bio/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_bio/package-info.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"name": "dash_bio", "version": "0.4.0", "author": "The Plotly Team <[email protected]>"}
{"name": "dash_bio", "version": "0.4.1", "author": "The Plotly Team <[email protected]>"}
7 changes: 3 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-bio",
"version": "0.4.0",
"version": "0.4.1",
"description": "Dash components for bioinformatics",
"repository": {
"type": "git",
Expand Down Expand Up @@ -30,7 +30,7 @@
"dependencies": {
"circos": "git+https://github.com/matthewchan15/circosJS.git#matthewchan15-zoom-pan-svg",
"fast-memoize": "^2.5.1",
"fornac": "^1.1.8",
"fornac": "git://github.com/plotly/fornac.git#9868d6943344199761ba94341d3ef01961a01f7c",
"ideogram": "git+https://github.com/eweitz/ideogram.git#7d9b2ab91b91ef35db93bdeb529d4760de63292f",
"molecule-2d-for-react": "git://github.com/plotly/molecule-2d-for-react.git",
"molecule-3d-for-react": "git://github.com/plotly/molecule-3d-for-react.git",
Expand Down Expand Up @@ -85,4 +85,4 @@
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}
}