File tree Expand file tree Collapse file tree 4 files changed +25
-6
lines changed Expand file tree Collapse file tree 4 files changed +25
-6
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 0.0.4] - 2018-01-19
10+
11+ ### Added
12+ * Homepage URL for PyPi
13+ * Long Description for PyPi
14+
15+ ### Changed
16+ * Cytoscape component docstring for thorough and well-formatted references (#26 )
17+ * Refactored code base to match the up-to-date version of ` dash-component-boilerplate ` (#27 )
18+
19+ ### Fixed
20+ * Console error where ` setProps ` gets called even when it is undefined (# 28)
21+ * Incorrect setProps assignment that causes ` setProps ` to not be properly defined when nested in bigger apps (e.g. ` dash-docs ` ) (#28 )
22+
923## [ 0.0.3] - 2018-12-29
1024### Added
1125* Detailed usage example for rendering Biopython's Phylo object (phylogeny trees)
1226into a Cytoscape graph, with interactive features such as highlighting.
1327
1428### Updated
15- * Cytoscape.js version, from 1.0.1 to 1.1.0
29+ * React-Cytoscapejs version, from 1.0.1 to 1.1.0
1630
1731## [ 0.0.2] - 2018-11-08
1832### Added
Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ include dash_cytoscape/dash_cytoscape.dev.js
33include dash_cytoscape/metadata.json
44include dash_cytoscape/package.json
55include README.md
6+ include LICENSE
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ Interacting with the elements:
1515Make sure that the following python packages are installed:
1616
1717```
18- dash==0.28.5
18+ dash==0.35.1
1919dash-renderer==0.14.3
20- dash-html-components==0.13.2
21- dash-core-components==0.34.0
20+ dash-html-components==0.13.4
21+ dash-core-components==0.42.1
2222```
2323
2424Older versions are not necessarily incompatible, but have not been extensively tested.
@@ -64,7 +64,7 @@ Please follow the following steps for local testing:
6464$ git clone https://github.com/plotly/dash-cytoscape.git
6565```
66662 . In order to run the Python builds (` npm run build:py ` ) you need to create a
67- venv for this project. Make sure you have ` virtualenv ` correctly instaleld and run this:
67+ venv for this project. Make sure you have ` virtualenv ` correctly installed and run this:
6868``` commandline
6969$ mkdir dash_cytoscape_dev
7070$ cd dash_cytoscape_dev
Original file line number Diff line number Diff line change 1+ import io
12import json
23import os
34from setuptools import setup
1718 include_package_data = True ,
1819 license = package ['license' ],
1920 description = package ['description' ] if 'description' in package else package_name ,
21+ long_description = io .open ('README.md' , encoding = 'utf-8' ).read (),
22+ long_description_content_type = 'text/markdown' ,
2023 install_requires = [
2124 'dash' ,
2225 'dash-html-components' ,
2326 'dash_renderer' ,
24- ]
27+ ],
28+ url = 'https://dash.plot.ly/cytoscape'
2529)
You can’t perform that action at this time.
0 commit comments