Skip to content

Commit c8b70ca

Browse files
author
Xing Han Lu
authored
Merge pull request #29 from plotly/v0.0.4
Release v0.0.4
2 parents 8708dd9 + 5ae3ba6 commit c8b70ca

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff 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)
1226
into 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

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ include dash_cytoscape/dash_cytoscape.dev.js
33
include dash_cytoscape/metadata.json
44
include dash_cytoscape/package.json
55
include README.md
6+
include LICENSE

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ Interacting with the elements:
1515
Make sure that the following python packages are installed:
1616

1717
```
18-
dash==0.28.5
18+
dash==0.35.1
1919
dash-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

2424
Older 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
```
6666
2. 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

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import io
12
import json
23
import os
34
from setuptools import setup
@@ -17,9 +18,12 @@
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
)

0 commit comments

Comments
 (0)