Conversation
GraphViz 0.3.0 (Graphviz_jll v15) is the current release; the `[compat]` entry pinned us to the 0.2 series. Verified on Julia 1.10, 1.11 and 1.12 that 0.3.0 resolves, the `GraphPPLGraphVizExt` extension precompiles and loads, `GraphViz.Graph(::String)` constructs and `GraphViz.load` is still an extensible generic, so `ext/GraphPPLGraphVizExt.jl` needs no changes. Full test suite passes on Julia 1.12 with 0.3.0, including the `ext/graphviz_integration_tests.jl` test item. Refs #313. Note this is a compat bump, not a fix for that report: the `UndefVarError: libgvc` there could not be reproduced here — GraphViz 0.2.0, 0.2.1 and 0.3.0 all initialize correctly on Julia 1.12. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #322 +/- ##
=======================================
Coverage 90.72% 90.72%
=======================================
Files 16 16
Lines 2263 2263
=======================================
Hits 2053 2053
Misses 210 210 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Change
Project.toml[compat]:GraphViz = "0.2"→GraphViz = "0.2, 0.3".GraphViz 0.3.0 (Graphviz_jll v15) is the current release; we were pinned to the 0.2 series.
Verification
Checked on Julia 1.10, 1.11 and 1.12 that with this change GraphViz 0.3.0 is the version
selected, the
GraphPPLGraphVizExtextension precompiles and loads,GraphViz.Graph(::String)constructs, and SVG rendering works.
GraphViz.loadis still an extensible generic (2 methods),so
ext/GraphPPLGraphVizExt.jl:520needs no changes.Full test suite on Julia 1.12 with 0.3.0: 258/258 test items, 76803 pass, 1 broken — including
the
ext/graphviz_integration_tests.jlitem, which exercises the extension against the wholemodel zoo.
Relationship to #313
This is a compat bump, not a fix for #313, and it does not close it.
#313 reports
InitError: UndefVarError: libgvc not defined in GraphVizduringPkg.test()onJulia 1.12. That could not be reproduced here: GraphViz 0.2.0, 0.2.1 and 0.3.0 all initialize
correctly on Julia 1.12 (macOS arm64), and the extension loads in every case. The reported
failure looks environment-specific — most likely a partial or corrupted
Graphviz_jllartifacton the reporting machine rather than a version incompatibility.
Landing this on its own merits: staying on 0.2 blocks users from a maintained release for no
reason.
🤖 Generated with Claude Code