Skip to content

Commit

Permalink
Merge branch 'bugfix/tabulate_fix'
Browse files Browse the repository at this point in the history
  • Loading branch information
GjjvdBurg committed Oct 24, 2022
2 parents 415294d + 05ee42e commit 1672100
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- master
pull_request:
branchers:
branches:
- master
schedule:
- cron: 42 8 */21 * *
Expand Down
2 changes: 1 addition & 1 deletion analysis/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tabulate>=0.8.6
tabulate>=0.9.0
scipy
numpy
labella>=0.9.7
Expand Down
4 changes: 1 addition & 3 deletions analysis/scripts/aggregate_scores_wide.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,7 @@ def make_table(
row.append(score_str)
continue

avg_str = tabulate._format(
avg, tabulate._float_type, ".3f", ""
)
avg_str = tabulate._format(avg, float, ".3f", "")

avg_str = textbf(avg_str) if need_bold(method) else avg_str
if show_std:
Expand Down

0 comments on commit 1672100

Please sign in to comment.