This repository was archived by the owner on Jun 4, 2024. It is now read-only.
File tree 4 files changed +9
-5
lines changed
4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -434,4 +434,8 @@ Derived properties allow the component to expose complex state that can be usefu
434
434
435
435
## RC16 - Fix copy/paste behavior when copied rows larger than data
436
436
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
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " dash-table" ,
3
- "version" : " 3.1.0rc16 " ,
3
+ "version" : " 3.1.0-rc17 " ,
4
4
"description" : " Dash table" ,
5
5
"main" : " build/index.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " dash-table" ,
3
- "version" : " 3.1.0rc16 " ,
3
+ "version" : " 3.1.0-rc17 " ,
4
4
"description" : " Dash table" ,
5
5
"main" : " build/index.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change 4
4
with open ('package.json' ) as f :
5
5
package = json .load (f )
6
6
7
- package_name = package ["name" ].replace (" " , "_" ).replace ("-" , "_" )
7
+ package_name = str ( package ["name" ].replace (" " , "_" ).replace ("-" , "_" ) )
8
8
9
9
setup (
10
10
name = package_name ,
14
14
include_package_data = True ,
15
15
license = package ['license' ],
16
16
description = package ['description' ] if 'description' in package else package_name ,
17
- install_requires = []
17
+ install_requires = ['dash' ]
18
18
)
You can’t perform that action at this time.
0 commit comments