Skip to content

Commit 1ef4dd4

Browse files
Merge pull request #133 from ChrisRackauckas-Claude/fix-prettytables-v3-compatibility
Fix PrettyTables v3 compatibility in extension
2 parents ed82fd7 + 997ef7f commit 1ef4dd4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ AllocCheck = "0.2"
2121
Aqua = "0.8"
2222
ArrayInterface = "7.9"
2323
Pkg = "1"
24-
PrettyTables = "2.4.0"
24+
PrettyTables = "3"
2525
RuntimeGeneratedFunctions = "0.5.12"
2626
SafeTestsets = "0.0.1"
2727
StaticArrays = "1.9"

ext/SymbolicIndexingInterfacePrettyTablesExt/SymbolicIndexingInterfacePrettyTablesExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function SymbolicIndexingInterface.show_params(
3636
end
3737

3838
pretty_table(io, [params[1:num_shown] vals[1:num_shown]];
39-
header = ["Parameter", "Value"],
39+
column_labels = ["Parameter", "Value"],
4040
kwargs...)
4141

4242
if num_shown < length(params)

0 commit comments

Comments
 (0)