Skip to content

Commit 1672100

Browse files
committed
Merge branch 'bugfix/tabulate_fix'
2 parents 415294d + 05ee42e commit 1672100

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
pull_request:
8-
branchers:
8+
branches:
99
- master
1010
schedule:
1111
- cron: 42 8 */21 * *

analysis/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tabulate>=0.8.6
1+
tabulate>=0.9.0
22
scipy
33
numpy
44
labella>=0.9.7

analysis/scripts/aggregate_scores_wide.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,7 @@ def make_table(
239239
row.append(score_str)
240240
continue
241241

242-
avg_str = tabulate._format(
243-
avg, tabulate._float_type, ".3f", ""
244-
)
242+
avg_str = tabulate._format(avg, float, ".3f", "")
245243

246244
avg_str = textbf(avg_str) if need_bold(method) else avg_str
247245
if show_std:

0 commit comments

Comments
 (0)