Skip to content

Commit

Permalink
Fix forna stylesheet (#434)
Browse files Browse the repository at this point in the history
* Add className to container div.

* Use fixed version of fornac library.

* Update version of package.

* Update auto-generated files.

* Add hash for specific fornac commit and update version.

* Update autogenerated files.

* Add Python version to cache checksum.

* Remove className.

* Update CHANGELOG.

* Update version.

* Add autogenerated files.

* Remove python version caching from node job.

* Update .circleci/config.yml

Co-Authored-By: alexcjohnson <[email protected]>

* Fix save_cache for python dependencies.

* Update version.

* Update autogenerated files.
  • Loading branch information
Shammamah Hossain authored Nov 8, 2019
1 parent c951af6 commit d56f0b7
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
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"
}
}
}

0 comments on commit d56f0b7

Please sign in to comment.