File tree Expand file tree Collapse file tree 8 files changed +18
-7
lines changed
Expand file tree Collapse file tree 8 files changed +18
-7
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ python_variables: &python_variables
7070 CIRCLE_ARTIFACTS : /tmp/circleci-artifacts
7171 CIRCLE_TEST_REPORTS : /tmp/circleci-test-results
7272 CODECOV_TOKEN : b0d35139-0a75-427a-907b-2c78a762f8f0
73- VERSION : 3.17 .0
73+ VERSION : 3.18 .0
7474 PANDOC_RELEASES_URL : https://github.com/jgm/pandoc/releases
7575python_formatting : &python_formatting
7676 parallelism : 1
Original file line number Diff line number Diff line change 11## Changelog
22
3+ ### 3.18.0 (2025-3-20)
4+ * [ #912 ] ( https://github.com/man-group/dtale/issues/912 ) : translation files not being included in bundle
5+ * [ #910 ] ( https://github.com/man-group/dtale/issues/910 ) : updates to where 'parse_version' comes from
6+ * [ #909 ] ( https://github.com/man-group/dtale/issues/909 ) : allow 'theme' to be set from dtale.show
7+
38### 3.17.0 (2025-3-20)
49* [ #905 ] ( https://github.com/man-group/dtale/issues/905 ) : updates for dash 3.0.0
510* [ #902 ] ( https://github.com/man-group/dtale/issues/902 ) : fix text wrapping on row detail popup
Original file line number Diff line number Diff line change 11{
22 "name" : " dtale" ,
3- "version" : " 3.17 .0" ,
3+ "version" : " 3.18 .0" ,
44 "description" : " Visualizer for Pandas Data Structures" ,
55 "main" : " index.js" ,
66 "repository" : {
Original file line number Diff line number Diff line change 1- VERSION = 3.17 .0
1+ VERSION = 3.18 .0
22TZ = America/New_York
Original file line number Diff line number Diff line change 6464# built documents.
6565#
6666# The short X.Y version.
67- version = "3.17 .0"
67+ version = "3.18 .0"
6868# The full version, including alpha/beta/rc tags.
69- release = "3.17 .0"
69+ release = "3.18 .0"
7070
7171# The language for content autogenerated by Sphinx. Refer to documentation
7272# for a list of supported languages.
Original file line number Diff line number Diff line change 11{
22 "name" : " dtale" ,
3- "version" : " 3.17 .0" ,
3+ "version" : " 3.18 .0" ,
44 "description" : " Visualizer for Pandas Data Structures" ,
55 "main" : " main.js" ,
66 "directories" : {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ def read_file(path):
2525
2626setup (
2727 name = "dtale" ,
28- version = "3.17 .0" ,
28+ version = "3.18 .0" ,
2929 author = "MAN Alpha Technology" ,
3030 author_email = "ManAlphaTech@man.com" ,
3131 description = "Web Client for Visualizing Pandas Objects" ,
Original file line number Diff line number Diff line change @@ -85,6 +85,8 @@ def test_startup(unittest):
8585 enable_web_uploads = True ,
8686 main_title = "test_title" ,
8787 main_title_font = "test_title_font" ,
88+ theme = "dark" ,
89+ nan_display = "N/A" ,
8890 )
8991
9092 pdt .assert_frame_equal (instance .data , test_data .reset_index ())
@@ -112,6 +114,8 @@ def test_startup(unittest):
112114 highlightFilter = False ,
113115 main_title = "test_title" ,
114116 main_title_font = "test_title_font" ,
117+ theme = "dark" ,
118+ nanDisplay = "N/A" ,
115119 ),
116120 "should lock index columns" ,
117121 )
@@ -141,6 +145,8 @@ def test_startup(unittest):
141145 highlightFilter = False ,
142146 main_title = "test_title" ,
143147 main_title_font = "test_title_font" ,
148+ theme = "dark" ,
149+ nanDisplay = "N/A" ,
144150 ),
145151 "should hide header editor" ,
146152 )
You can’t perform that action at this time.
0 commit comments