chore(deps): bump tabulate from 0.9.0 to 0.10.0 (#40315)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Claude <claude@anthropic.com>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-authored-by: Evan <evan@preset.io>
This commit is contained in:
dependabot[bot]
2026-05-25 18:55:24 -07:00
committed by GitHub
parent 33585b0480
commit 09572cd5ef
4 changed files with 20 additions and 20 deletions

View File

@@ -37,9 +37,9 @@ def test_pivot_df_no_cols_no_rows_single_metric():
assert (
df.to_markdown()
== """
| | SUM(num) |
|---:|------------:|
| 0 | 8.06797e+07 |
| | SUM(num) |
|---:|-----------:|
| 0 | 80679663 |
""".strip()
)
@@ -60,7 +60,7 @@ def test_pivot_df_no_cols_no_rows_single_metric():
== f"""
| | ('SUM(num)',) |
|:-----------------|----------------:|
| ('{_("Total")} (Sum)',) | 8.06797e+07 |
| ('{_("Total")} (Sum)',) | 80679663 |
""".strip()
)
@@ -82,7 +82,7 @@ def test_pivot_df_no_cols_no_rows_single_metric():
== """
| | ('SUM(num)',) |
|:-----------------|----------------:|
| ('Total (Sum)',) | 8.06797e+07 |
| ('Total (Sum)',) | 80679663 |
""".strip()
)
@@ -105,7 +105,7 @@ def test_pivot_df_no_cols_no_rows_single_metric():
== f"""
| | ('{_("Total")} (Sum)',) |
|:--------------|-------------------:|
| ('SUM(num)',) | 8.06797e+07 |
| ('SUM(num)',) | 80679663 |
""".strip()
)
@@ -127,7 +127,7 @@ def test_pivot_df_no_cols_no_rows_single_metric():
== f"""
| | ('SUM(num)',) | ('Total (Sum)',) |
|:-----------------|----------------:|-------------------:|
| ('{_("Total")} (Sum)',) | 8.06797e+07 | 8.06797e+07 |
| ('{_("Total")} (Sum)',) | 80679663 | 80679663 |
""".strip()
)
@@ -142,9 +142,9 @@ def test_pivot_df_no_cols_no_rows_two_metrics():
assert (
df.to_markdown()
== """
| | SUM(num) | MAX(num) |
|---:|------------:|-----------:|
| 0 | 8.06797e+07 | 37296 |
| | SUM(num) | MAX(num) |
|---:|-----------:|-----------:|
| 0 | 80679663 | 37296 |
""".strip()
)
@@ -165,7 +165,7 @@ def test_pivot_df_no_cols_no_rows_two_metrics():
== f"""
| | ('SUM(num)',) | ('MAX(num)',) |
|:-----------------|----------------:|----------------:|
| ('{_("Total")} (Sum)',) | 8.06797e+07 | 37296 |
| ('{_("Total")} (Sum)',) | 80679663 | 37296 |
""".strip()
)
@@ -187,7 +187,7 @@ def test_pivot_df_no_cols_no_rows_two_metrics():
== """
| | ('SUM(num)',) | ('MAX(num)',) |
|:-----------------|----------------:|----------------:|
| ('Total (Sum)',) | 8.06797e+07 | 37296 |
| ('Total (Sum)',) | 80679663 | 37296 |
""".strip()
)
@@ -210,8 +210,8 @@ def test_pivot_df_no_cols_no_rows_two_metrics():
== f"""
| | ('{_("Total")} (Sum)',) |
|:--------------|-------------------:|
| ('SUM(num)',) | 8.06797e+07 |
| ('MAX(num)',) | 37296 |
| ('SUM(num)',) | 80679663 |
| ('MAX(num)',) | 37296 |
""".strip()
)
@@ -234,7 +234,7 @@ def test_pivot_df_no_cols_no_rows_two_metrics():
== f"""
| | ('SUM(num)',) | ('MAX(num)',) | ('{_("Total")} (Sum)',) |
|:-----------------|----------------:|----------------:|-------------------:|
| ('{_("Total")} (Sum)',) | 8.06797e+07 | 37296 | 8.0717e+07 |
| ('{_("Total")} (Sum)',) | 80679663 | 37296 | 80716959 |
""".strip()
)
@@ -1839,8 +1839,8 @@ def test_table():
assert (
formatted.to_markdown()
== """
| | count |
|---:|:-----------|
| | count |
|---:|-----------:|
| 0 | 80,679,663 |
""".strip()
)