Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit 7383df4

Browse files
3.1 issue137 centos setup (#184)
1 parent 7393ed0 commit 7383df4

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -434,4 +434,8 @@ Derived properties allow the component to expose complex state that can be usefu
434434

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

437-
Issue: https://github.com/plotly/dash-table/issues/142
437+
Issue: https://github.com/plotly/dash-table/issues/142
438+
439+
## RC17- Linux install
440+
441+
Issue: https://github.com/plotly/dash-table/issues/137

dash_table/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-table",
3-
"version": "3.1.0rc16",
3+
"version": "3.1.0-rc17",
44
"description": "Dash table",
55
"main": "build/index.js",
66
"scripts": {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-table",
3-
"version": "3.1.0rc16",
3+
"version": "3.1.0-rc17",
44
"description": "Dash table",
55
"main": "build/index.js",
66
"scripts": {

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
with open('package.json') as f:
55
package = json.load(f)
66

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

99
setup(
1010
name=package_name,
@@ -14,5 +14,5 @@
1414
include_package_data=True,
1515
license=package['license'],
1616
description=package['description'] if 'description' in package else package_name,
17-
install_requires=[]
17+
install_requires=['dash']
1818
)

0 commit comments

Comments
 (0)