From 062093cd50a5e1da8ab357d132987b35c1cb11d7 Mon Sep 17 00:00:00 2001 From: Anthony Costarelli Date: Tue, 23 Jun 2026 11:05:23 -0400 Subject: [PATCH] Port pf/print bug fixes (PSI #1637) - compute_conflict!: header -> column_labels for PrettyTables v3 - docs.yml: add docs-deploy concurrency group Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/docs.yml | 4 ++++ src/core/optimization_container.jl | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 012cbd7..ba5991d 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -8,6 +8,10 @@ on: tags: '*' pull_request: +concurrency: + group: docs-deploy + cancel-in-progress: false + jobs: build: runs-on: ubuntu-latest diff --git a/src/core/optimization_container.jl b/src/core/optimization_container.jl index 0eeee71..c03ca1e 100644 --- a/src/core/optimization_container.jl +++ b/src/core/optimization_container.jl @@ -526,7 +526,7 @@ function compute_conflict!(container::OptimizationContainer) msg = IOBuffer() for (k, v) in conflict - PrettyTables.pretty_table(msg, v; header = [k]) + PrettyTables.pretty_table(msg, v; column_labels = [k]) end @error "Constraints participating in conflict basis (IIS) \n\n$(String(take!(msg)))"