Skip to content

Commit

Permalink
3.1 issue137 centos setup (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc-Andre-Rivet committed Oct 31, 2018
1 parent aaa4889 commit 94f2fb6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion packages/dash-table/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,4 +434,8 @@ Derived properties allow the component to expose complex state that can be usefu

## RC16 - Fix copy/paste behavior when copied rows larger than data

Issue: https://github.com/plotly/dash-table/issues/142
Issue: https://github.com/plotly/dash-table/issues/142

## RC17- Linux install

Issue: https://github.com/plotly/dash-table/issues/137
2 changes: 1 addition & 1 deletion packages/dash-table/dash_table/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-table",
"version": "3.1.0rc16",
"version": "3.1.0-rc17",
"description": "Dash table",
"main": "build/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/dash-table/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-table",
"version": "3.1.0rc16",
"version": "3.1.0-rc17",
"description": "Dash table",
"main": "build/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/dash-table/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
with open('package.json') as f:
package = json.load(f)

package_name = package["name"].replace(" ", "_").replace("-", "_")
package_name = str(package["name"].replace(" ", "_").replace("-", "_"))

setup(
name=package_name,
Expand All @@ -14,5 +14,5 @@
include_package_data=True,
license=package['license'],
description=package['description'] if 'description' in package else package_name,
install_requires=[]
install_requires=['dash']
)

0 comments on commit 94f2fb6

Please sign in to comment.