Fix docs tutorial failures: update PSI compat to 0.34, drop deprecated serialize kwarg#70
Draft
Copilot wants to merge 2 commits intokd/literate-cleanfrom
Draft
Fix docs tutorial failures: update PSI compat to 0.34, drop deprecated serialize kwarg#70Copilot wants to merge 2 commits intokd/literate-cleanfrom
serialize kwarg#70Copilot wants to merge 2 commits intokd/literate-cleanfrom
Conversation
…d serialize param Agent-Logs-Url: https://github.com/Sienna-Platform/PowerAnalytics.jl/sessions/16e83192-f92d-44d1-a302-8c822df29bd2 Co-authored-by: kdayday <12451220+kdayday@users.noreply.github.com>
Contributor
Author
|
Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details. Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
Copilot
AI
changed the title
[WIP] Update documentation examples to fix errors
Fix docs tutorial failures: update PSI compat to 0.34, drop deprecated May 5, 2026
serialize kwarg
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.
PowerSimulations 0.33is incompatible withInfrastructureSystems 3.5+, which changedTimeSeriesCacheKeyfrom a 3-arg to a 5-arg constructor. This caused the tutorial simulation to fail at step 1, makingcreate_problem_results_dictthrow "Simulation was not successful", cascading all tutorial@exampleblocks intoUndefVarError.Changes
Project.toml: Widen compat fromPowerSimulations = "0.33"→"0.33, 0.34"so the resolver can pick PSI 0.34.x, which supports IS 3.5+.docs/src/tutorials/_run_scenarios_RTS_Tutorial.jl: Removeserialize = falsefrombuild!— this kwarg was dropped in PSI 0.34. The new default (store_systems_in_results = true) also correctly enablespopulate_system = truein the tutorial's result-loading step.