Skip to content

Update to PSY5#419

Merged
jd-lara merged 44 commits into
mainfrom
rh/update_psy5
Apr 29, 2026
Merged

Update to PSY5#419
jd-lara merged 44 commits into
mainfrom
rh/update_psy5

Conversation

@rodrigomha
Copy link
Copy Markdown
Contributor

No description provided.

@rodrigomha rodrigomha requested a review from jd-lara March 31, 2026 19:50
@rodrigomha rodrigomha marked this pull request as ready for review April 20, 2026 23:12
@rodrigomha rodrigomha requested a review from Copilot April 20, 2026 23:12
Comment thread src/base/device_wrapper.jl Outdated
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot was unable to run its full agentic suite in this review.

Updates the codebase for compatibility with PowerSystems v5 (PSY5) and newer PowerFlows/PowerNetworkMatrices, including adjustments to power-flow execution, Ybus construction/representation, and test expectations.

Changes:

  • Bumped package compat/version and updated power-flow solving paths (including storing solutions and load-model handling).
  • Changed Ybus construction/usage (excluding constant-impedance loads) and shifted multiple internal sparse matrices to Float32.
  • Adjusted multiple tests’ solver tolerances/expectations and disabled one test file due to convergence issues.

Reviewed changes

Copilot reviewed 31 out of 32 changed files in this pull request and generated 8 comments.

Show a summary per file
File Description
test/utils/data_utils.jl Adds explicit source power limits to align with updated component requirements.
test/test_case_source_bus_voltage_change.jl Changes solver options (removes dtmax, sets tolerances).
test/test_case_simple_marconato.jl Uses solve_and_store_power_flow! instead of solve_powerflow!.
test/test_case_simple_anderson.jl Uses solve_and_store_power_flow! instead of solve_powerflow!.
test/test_case_oneDoneQ.jl Uses solve_and_store_power_flow! instead of solve_powerflow!.
test/test_case_marconato.jl Uses solve_and_store_power_flow! instead of solve_powerflow!.
test/test_case_anderson.jl Uses solve_and_store_power_flow! instead of solve_powerflow!.
test/test_case_activeload.jl Loosens eigenvalue assertions to accommodate new numerics.
test/test_case_9bus_systems.jl Sets solver tolerances for Rodas4 execution.
test/test_case_5shaft.jl Uses solve_and_store_power_flow! instead of solve_powerflow!.
test/test_case57_degov.jl Switches MethodOfSteps integrator and removes dtmax.
test/test_case55_esst1a.jl Removes dtmax for IDA execution.
test/test_case49_csvgn1.jl Adds source limits and removes dtmax from IDA execution.
test/test_case40_exac1.jl Removes dtmax from IDA/Rodas4 execution.
test/test_case39_exst1.jl Removes dtmax from IDA execution.
test/test_case34_exp_load.jl Adds tspan and relaxes transient result tolerances.
test/test_case29_renewablemodels.jl Adjusts IDA tolerances and removes dtmax.
test/test_base.jl Builds Ybus excluding constant-impedance loads; relaxes isapprox tolerances.
test/runtests.jl Disables a test file due to convergence issues.
test/results/results_eigenvalues.jl Updates stored eigenvalue fixtures for new library versions.
test/benchmarks/psse/MultiGen/FourBusMulti.raw Adjusts bus type classification in benchmark RAW case.
test/Project.toml Removes DiffEqBase from test deps.
src/utils/psy_utils.jl Changes Ybus rectangular transform typing; adds helper constructors and a new PNM.Ybus overload.
src/utils/pf_utils.jl Adds power-flow helper utilities, including load conversion for PF data.
src/initialization/init_device.jl Uses new get_total_p/q helpers for StandardLoad initialization.
src/base/simulation_inputs.jl Switches stored sparse matrices to Float32; updates Ybus construction and load wrapper signature.
src/base/simulation_initialization.jl Uses new PF helper and tweaks units base/logging.
src/base/perturbations.jl Switches Ybus update internals and NetworkSwitch storage to Float32.
src/base/device_wrapper.jl Uses new get_total_q and changes load aggregation to use with_units_base.
src/PowerSimulationsDynamics.jl Adds inclusion of new pf_utils.jl.
docs/src/tutorials/tutorial_continuation_pf.md Updates tutorial to use solve_and_store_power_flow!.
Project.toml Bumps version and updates compat bounds for PSY5+ ecosystem.
Comments suppressed due to low confidence (1)

src/base/device_wrapper.jl:1

  • Calling PSY.with_units_base(...SYSTEM_BASE) repeatedly for each scalar getter multiplies overhead inside a hot aggregation loop. Wrap once per load (or once around the whole loop if safe) and read all needed fields inside that single with_units_base block to reduce overhead and allocations.
get_inner_vars_count(::PSY.DynamicGenerator) = GEN_INNER_VARS_SIZE

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread src/utils/psy_utils.jl
Comment thread src/base/simulation_inputs.jl
Comment thread src/utils/psy_utils.jl Outdated
Comment on lines +187 to +201
function PowerNetworkMatrices.Ybus(
lines::Vector{<:PSY.Branch},
buses::Vector{PSY.ACBus},
)
sys = PSY.System(100.0)
for b in buses
bus = make_basic_bus(b)
PSY.add_component!(sys, bus)
end
for l in lines
line = make_basic_line(l, sys)
PSY.add_component!(sys, line)
end
return PowerNetworkMatrices.Ybus(sys)
end
Copy link

Copilot AI Apr 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Defining PowerNetworkMatrices.Ybus(::Vector{<:PSY.Branch}, ::Vector{PSY.ACBus}) inside this package is type piracy (extending a function from another module for argument types you don’t own). It also hard-codes PSY.System(100.0), which can silently produce incorrect per-unit admittances if the original system base power differs. Prefer adding a package-local helper (e.g., build_ybus_from_lines_buses(...)) or wrapping this in your own API; if you must construct a PSY.System, accept/derive the base power explicitly and document the assumptions.

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot apply changes based on this feedback

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Applied in 2fc4008. I replaced the pirated PowerNetworkMatrices.Ybus overload with a package-local build_ybus_from_branches(...) helper and updated the call site to pass base_power = PSY.get_base_power(sys) explicitly.

Copy link
Copy Markdown
Contributor Author

@rodrigomha rodrigomha Apr 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot Can you also update the other files that are using the Ybus pirate constructor to use the new one. There should be in test/test_base.jl, test/test_case_OMIB.jl, test/data_tests/test12.jl, test/data_tests/test13.jl, test/data_tests/test14.jl and test/data_tests/test62.jl

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in f661893. I updated those remaining test files to use PSID.build_ybus_from_branches(...; base_power=PSY.get_base_power(...)) instead of the removed vector Ybus constructor.

Comment thread src/utils/pf_utils.jl Outdated
Comment thread test/runtests.jl
Comment thread src/base/simulation_initialization.jl Outdated
Comment thread test/test_case_activeload.jl Outdated
Comment thread test/test_case_activeload.jl Outdated
@rodrigomha
Copy link
Copy Markdown
Contributor Author

@copilot resolve the merge conflicts in this pull request. You can remove the files as they were replaced with literate

Copilot AI and others added 2 commits April 23, 2026 05:36
Co-authored-by: rodrigomha <24548207+rodrigomha@users.noreply.github.com>
Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 23, 2026

@copilot resolve the merge conflicts in this pull request. You can remove the files as they were replaced with literate

Done in c11770d. The merge conflicts are resolved and the replaced markdown tutorial files were kept removed in favor of the Literate files.

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:

  • https://api.github.com/repos/EnzymeAD/Enzyme.jl/tarball/24bbb6fc8fb87eb71c1f8d00184a60fc22c63903
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/FluxML/MacroTools.jl/tarball/1e0228a030642014fe5cfe68c2c0a818f9e3f522
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaApproximation/FastGaussQuadrature.jl/tarball/0044e9f5e49a57e88205e8f30ab73928b05fe5b6
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaArrays/ArrayInterface.jl/tarball/54f895554d05c83e3dd59f6a396671dae8999573
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaArrays/FillArrays.jl/tarball/2f979084d1e13948a3352cf64a25df6bd3b4dca3
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaArrays/StaticArrayInterface.jl/tarball/aa1ea41b3d45ac449d10477f65e2b40e3197a0d2
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaArrays/StaticArrays.jl/tarball/246a8bb2e6667f832eea063c3a56aef96429a3db
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaArrays/StaticArraysCore.jl/tarball/6ab403037779dae8c514bad259f32a447262455a
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Blosc_jll.jl/tarball/535c80f1c0847a4c967ea945fca21becc9de1522
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/HDF5_jll.jl/tarball/45337643a2d97262d5fe72ce1f13e8a662d13d62
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Hwloc_jll.jl/tarball/baaaebd42ed9ee1bd9173cfd56910e55a8622ee1
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/IntelOpenMP_jll.jl/tarball/ec1debd61c300961f98064cfb21287613ad7f303
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Libiconv_jll.jl/tarball/be484f5c92fad0bd8acfef35fe017900b0b73809
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Lz4_jll.jl/tarball/191686b1ac1ea9c89fc52e996ad15d1d241d1e33
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MKL_jll.jl/tarball/282cadc186e7b2ae0eeadbd7a4dffed4196ae2aa
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MPIABI_jll.jl/tarball/9be143b6045719e8fb019d2b3bc2aebad1184fef
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MPICH_jll.jl/tarball/07dbec8aab01696edc0151a401a6cdfe95b9b885
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MPItrampoline_jll.jl/tarball/675df097f8eeb28998b2cfe3b25655af73d5f7df
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/MicrosoftMPI_jll.jl/tarball/bc95bf4149bf535c09602e3acdf950d9b4376227
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/OpenBLAS32_jll.jl/tarball/46cce8b42186882811da4ce1f4c7208b02deb716
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/OpenMPI_jll.jl/tarball/6d6c0ca4824268c1a7dca1f4721c535ac63d9074
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/OpenSpecFun_jll.jl/tarball/1346c9208249809840c91b26703912dff463d335
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/SQLite_jll.jl/tarball/0b5f220f90642566b65ba86549d1ee4118ab2579
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/SuiteSparse32_jll.jl/tarball/1d43a4874b879f381b8a3a978f0ebe837cfd0922
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Sundials_jll.jl/tarball/a872f379c836e9cb5734485ca0681b192a59b98b
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/XML2_jll.jl/tarball/80d3930c6347cfce7ccf96bd3bafdf079d9c0390
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Xorg_libpciaccess_jll.jl/tarball/4909eb8f1cbf6bd4b1c30dd18b2ead9019ef2fad
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/Zstd_jll.jl/tarball/446b23e73536f84e8037f5dce465e92275f6a308
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/aws_c_auth_jll.jl/tarball/8cab83c96af80a1be968251ce1a0548a7545484d
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;); Pkg.instantiate() (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/aws_c_cal_jll.jl/tarball/22c0f42f4a1f0dc5dcfa8fd267c4ac407c455e7a
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/aws_c_common_jll.jl/tarball/a759cb9bf456ad792cc7898a81ae333cce9ef02a
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/aws_c_compression_jll.jl/tarball/7910c72f45f44afd297c39fe43b99c56d5ed22ec
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/aws_c_http_jll.jl/tarball/e358d5a001ef7afbd4f8c5225322512819cda2f2
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/aws_c_io_jll.jl/tarball/7e481d474b2087ee8bbf55b81bf9119f21e396d9
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/aws_c_s3_jll.jl/tarball/3e9917ab25114feba657e71be41cad068b9f6595
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/aws_c_sdkutils_jll.jl/tarball/c43dfba2c1ab9ea9f02f2c80e86fa16f6460244e
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/aws_checksums_jll.jl/tarball/2570c8e23f4771a087b12a47edcaaa670ac05a01
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/dlfcn_win32_jll.jl/tarball/e141d67ffe550eadfb5af1bdbdaf138031e4805f
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/libaec_jll.jl/tarball/1411bc34c180946d3cef591de1384012afa6edee
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/mpif_jll.jl/tarball/a8083ee0737c243c8f40a4ba86a0956997facb73
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/oneTBB_jll.jl/tarball/1350188a69a6e46f799d3945beef36435ed7262f
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaBinaryWrappers/s2n_tls_jll.jl/tarball/6b99e06a3863de281da6ff0e193a5b3706349054
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaCollections/AbstractTrees.jl/tarball/2d9c9a55f9c93e8887ad391fbae72f8ef55e1177
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaCollections/DataStructures.jl/tarball/e86f4a2805f7f19bec5129bc9150c38208e5dc23
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaCollections/LeftChildRightSiblingTrees.jl/tarball/95ba48564903b43b2462318aa243ee79d81135ff
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaCollections/OrderedCollections.jl/tarball/05868e21324cede2207c6f0f466b4bfef6d5e7ee
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaCollections/SortingAlgorithms.jl/tarball/64d974c2e6fdf07f8155b5b2ca2ffa9069b608d9
    • Triggering command: REDACTED, pid is -1 (http block)
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;) (http block)
  • https://api.github.com/repos/JuliaData/CSV.jl/tarball/8d8e0b0f350b8e1c91420b5e64e5de774c2f0f4d
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/DataAPI.jl/tarball/abe83f3a2f1b857aac70ef8b269080af17764bbe
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/DataFrames.jl/tarball/5fab31e2e01e70ad66e3e24c968c264d1cf166d6
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/DataFramesMeta.jl/tarball/b0652fb7f3c094cf453bf22e699712a0bed9fc83
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/DelimitedFiles.jl/tarball/9e2f36d3c96a820c678f2f1f1782582fcf685bae
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/InvertedIndices.jl/tarball/6da3c4316095de0f5ee2ebd875df8721e7e0bdbe
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/Missings.jl/tarball/ec4f7fbeab05d7747bdf98eb74d130a2a2ed298d
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/Parsers.jl/tarball/7d2f8f21da5db6a806faf7b9b292296da42b2810
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/PooledArrays.jl/tarball/36d8b4b899628fb92c2749eb488d884a926614d3
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/SentinelArrays.jl/tarball/ebe7e59b37c400f694f52b58c93d26201387da70
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/StructTypes.jl/tarball/159331b30e94d7b11379037feeb9b690950cace8
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/TableMetadataTools.jl/tarball/c0405d3f8189bb9a9755e429c6ea2138fca7e31f
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/Tables.jl/tarball/f2c1efbc8f3a609aadf318094f8fc5204bdaf344
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/WeakRefStrings.jl/tarball/b1be2855ed9ed8eac54e5caff2afcdb442d52c23
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaData/YAML.jl/tarball/a1c0c7585346251353cddede21f180b96388c403
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaDatabases/DBInterface.jl/tarball/a444404b3f94deaa43ca2a58e18153a82695282b
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaDatabases/SQLite.jl/tarball/87b47a05946c50f44531b447b1f24968345316a4
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaDiff/DiffResults.jl/tarball/782dd5f4561f5d267313f23853baaaa4c52ea621
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaDiff/DiffRules.jl/tarball/23163d55f885173722d1e4cf0f6110cdbaf7e272
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaDiff/DifferentiationInterface.jl/tarball/7ae99144ea44715402c6c882bfef2adbeadbc4ce
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaDiff/FiniteDiff.jl/tarball/73e879af0e767bd6dfade7c5b09d7b05657a8284
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaDiff/ForwardDiff.jl/tarball/cddeab6487248a39dae1a960fff0ac17b2a28888
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaDiff/SparseMatrixColorings.jl/tarball/f63d76c7b7c329cf11badd564fd8ba877b09c3fe
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaDocs/DocStringExtensions.jl/tarball/7442a5dfe1ebb773c29cc2962a8980f47221d76c
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaFunctional/CompositionsBase.jl/tarball/802bb88cd69dfd1509f6670416bd4434015693ad
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaGPU/Adapt.jl/tarball/0761717147821d696c9470a7a86364b2fbd22fd8
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaGPU/GPUArrays.jl/tarball/83cf05ab16a73219e5f6bd1bdfa9848fa24ac627
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaIO/Blosc.jl/tarball/310b77648d38c223d947ff3f50f511d08690b8d5
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaIO/CodecZlib.jl/tarball/962834c22b66e32aa10f7611c08c8ca4e20749a9
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaIO/HDF5.jl/tarball/491ea627ac824619f34168e29a0427a9e00e3e40
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaIO/HDF5.jl/tarball/d778420e524bcf56066e8c63c7aa315ae7269da2
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaIO/TranscodingStreams.jl/tarball/0c45878dcfdcfa8480052b6ab162cdd138781742
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaInterop/CEnum.jl/tarball/389ad5c84de1ae7cf0e28e381131c98ea87d54fc
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaLang/Compat.jl/tarball/9d8a54ce4b17aa5bdce0ea5c34bc5e7c340d16ad
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaLang/FunctionWrappers.jl/tarball/d62485945ce5ae9c0c48f124a84998d755bae00e
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaLang/PrecompileTools.jl/tarball/07a921781cab75691315adc645096ed5e370cb77
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaLogging/LoggingExtras.jl/tarball/f00544d95982ea270145636c181ceda21c4e2575
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaLogging/ProgressLogging.jl/tarball/f0803bc1171e455a04124affa9c21bba5ac4db32
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaLogging/TerminalLoggers.jl/tarball/f133fab380933d042f6796eda4e130272ba520ca
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaMath/InverseFunctions.jl/tarball/a779299d77cd080bf77b97535acecd73e1c5e5cb
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaMath/IrrationalConstants.jl/tarball/b2d91fe939cae05960e760110b328288867b5758
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaMath/NaNMath.jl/tarball/9b8215b1ee9e78a293f99797cd31375471b2bcae
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaMath/SpecialFunctions.jl/tarball/2700b235561b0335d5bef7097a111dc513b8655e
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaNLSolvers/LineSearches.jl/tarball/9ea3422d03222c6de679934d1c08f0a99405aa03
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaNLSolvers/NLSolversBase.jl/tarball/25a6638571a902ecfb1ae2a18fc1575f86b1d4df
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaNLSolvers/NLsolve.jl/tarball/019f12e9a1a7880459d0173c182e6a99365d7ac1
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaObjects/Accessors.jl/tarball/2eeb2c9bef11013efc6f8f97f32ee59b146b09fb
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;); Pkg.instantiate() (http block)
  • https://api.github.com/repos/JuliaObjects/ConstructionBase.jl/tarball/b4b092499347b18a015186eae3042f72267106cb
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaPackaging/JLLWrappers.jl/tarball/0533e564aae234aff59ab625543145446d8b6ec2
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaPackaging/Preferences.jl/tarball/8b770b60760d4451834fe79dd483e318eee709c4
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;); Pkg.instantiate() (http block)
  • https://api.github.com/repos/JuliaPackaging/Requires.jl/tarball/62389eeff14780bfe55195b7204c0d8738436d64
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaParallel/MPI.jl/tarball/8e98d5d80b87403c311fd51e8455d4546ba7a5f8
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaPhysics/Unitful.jl/tarball/57e1b2c9de4bd6f40ecb9de4ac1797b81970d008
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaPlots/Plots.jl/tarball/5c3d09cc4f31f5fc6af001c250bf1278733100ff
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaSIMD/BitTwiddlingConvenienceFunctions.jl/tarball/f21cfd4950cb9f0587d5067e69405ad2acd27b87
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaSIMD/CPUSummary.jl/tarball/f3a21d7fc84ba618a779d1ed2fcca2e682865bab
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaSIMD/CloseOpenIntervals.jl/tarball/05ba0d07cd4fd8b7a39541e31a7b0254704ea581
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaSIMD/LayoutPointers.jl/tarball/a9eaadb366f5493a5654e843864c13d8b107548c
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaSIMD/ManualMemory.jl/tarball/bcaef4fc7a0cfe2cba636d84cda54b5e4e4ca3cd
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaSIMD/Polyester.jl/tarball/16bbc30b5ebea91e9ce1671adc03de2832cff552
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaSIMD/PolyesterWeave.jl/tarball/645bed98cd47f72f67316fd42fc47dee771aefcd
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaSIMD/SIMDTypes.jl/tarball/330289636fb8107c5f32088d2741e9fd7a061a5c
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaSIMD/StrideArraysCore.jl/tarball/83151ba8065a73f53ca2ae98bc7274d817aa30f2
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaSIMD/ThreadingUtilities.jl/tarball/d969183d3d244b6c33796b5ed01ab97328f2db85
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaServices/WorkerUtilities.jl/tarball/cd1659ba0d57b71a464a29e64dbc67cfe83d54e7
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaSmoothOptimizers/Krylov.jl/tarball/c4d19f51afc7ba2afbe32031b8f2d21b11c9e26e
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaSparse/KLU.jl/tarball/07649c499349dad9f08dde4243a4c597064663e9
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaStats/Distances.jl/tarball/c7e3a542b999843086e2f29dac96a618c105be1d
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaStats/LogExpFunctions.jl/tarball/13ca9e2586b89836fd20cccf56e57e2b9ae7f38f
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaStats/Statistics.jl/tarball/ae3bb1eb3bba077cd276bc5cfc337cc65c3075c0
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaStats/StatsAPI.jl/tarball/178ed29fd5b2a2cfc3bd31c13375ae925623ff36
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaStats/TimeSeries.jl/tarball/e1235a1906d1e6d27c30c35daa91fcf6fc271f08
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaStrings/InlineStrings.jl/tarball/8f3d257792a522b4601c24a577954b0a8cd7334d
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaStrings/LaTeXStrings.jl/tarball/dda21b8cbd6a6c40d9d02a73230f9d70fed6918c
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaStrings/StringEncodings.jl/tarball/b765e46ba27ecf6b44faf70df40c57aa3a547dcb
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaTesting/Aqua.jl/tarball/d57fd255a8932b6509baf43284c416fc44d0b903
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/JuliaTesting/ExprTools.jl/tarball/27415f162e6028e81c72b82ef756bf321213b6ec
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/KristofferC/Crayons.jl/tarball/249fe38abf76d48563e2f4556bebd215aa317e15
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/KristofferC/TimerOutputs.jl/tarball/3748bd928e68c7c346b52125cf41fff0de6937d0
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/RalphAS/GenericSchur.jl/tarball/a694e2a57394e409f7a11ee0977362a9fafcb8c7
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/Roger-luo/ExproniconLite.jl/tarball/c13f0b150373771b0fdc1713c97860f8df12e6c2
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/Roger-luo/Jieko.jl/tarball/2f05ed29618da60c06a87e9c033982d4f71d0b6c
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/Roger-luo/Moshi.jl/tarball/53f817d3e84537d84545e0ad749e483412dd6b2a
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/ADTypes.jl/tarball/f7304359109c768cf32dc5fa2d371565bb63b68a
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/CommonSolve.jl/tarball/78ea4ddbcf9c241827e7035c3a03e2e456711470
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/CommonWorldInvalidations.jl/tarball/ae52d1c52048455e85a387fbee9be553ec2b68d0
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/ExponentialUtilities.jl/tarball/cc294ead6a85e975a8519dd4a0a6cb294eeb18d1
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/FastBroadcast.jl/tarball/e3e64918b1604ba8b1734c4a27febdfe5d09e235
    • Triggering command: REDACTED, pid is -1 (http block)
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;) (http block)
  • https://api.github.com/repos/SciML/FastPower.jl/tarball/862831f78c7a48681a074ecc9aac09f2de563f71
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/FunctionWrappersWrappers.jl/tarball/a100fa86d86ff062e6ea24d4a7427247a4eebf9b
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/IfElse.jl/tarball/debdd00ffef04665ccbb3e150747a77560e8fad1
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/LineSearch.jl/tarball/25454bc65c3eec4656cbe201c3d9336af49178c7
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/LinearSolve.jl/tarball/42b5cb44317e89ef75dd841c9c8eba9045bf9ff0
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/MaybeInplace.jl/tarball/54e2fdc38130c05b42be423e90da3bade29b74bd
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/MuladdMacro.jl/tarball/cac9cc5499c25554cba55cd3c30543cff5ca4fab
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/NonlinearSolve.jl/tarball/538432ca1aea8bf63db02929bf870501f8a7c64c
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/NonlinearSolve.jl/tarball/7156a5b51cba1bea33a82a036939ead4131f92bc
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/NonlinearSolve.jl/tarball/7ad7171d693ae5552ac43862e7f6b61df4471c2b
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/NonlinearSolve.jl/tarball/a19a5df29ef2b197499fc631fa1a59385ae15262
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/NonlinearSolve.jl/tarball/a2db21951cd1cd46a3ef8ba4bbfc84ddc9a5b3fb
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;); Pkg.instantiate() (http block)
  • https://api.github.com/repos/SciML/NonlinearSolve.jl/tarball/a3781e12becdf0ce5520bd97ec617e879bf4e9f2
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/NonlinearSolve.jl/tarball/ce68820a4f421fb5bee7ec4dcf875aff33886bfb
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/NonlinearSolve.jl/tarball/d688de789b7e643326caf9a1051376dadbcd8873
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/076ac77cee882b2f4858292dde748c8b2ab908e7
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/1aaaa4851bbe72497c9d01d69fa36396ddeb0a0a
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/1fe4f58f170c68b187ac42dc5f00932bb162ddfa
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/21117475cb0d27942d31e4b8a27337392ae680b0
    • Triggering command: REDACTED, pid is -1 (http block)
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;) (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/226226d334fe295885df6ecb2d110c22ead79983
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/275900d64ab7be5f1bca8c7bfd48166838b6ab44
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/2d2d59f9e530bca2f99934ecfde5430f6ad54bfe
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/2e44acb684dfcdc2e41851a988733e30b28a8478
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/302999c99bc454cf274d39b9ba3c2415f6fbb1cb
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/32fb54c8000c82fd32c55f7bf52f4651a3bd0e61
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/3339f3a26974a37666c74b95bdb54aefc63b9a56
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/3579d9272c286ffcceee794c5752e8cc7c3ae514
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;); Pkg.instantiate() (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/47271adac597af08263b6ea2669e93040b45c4d0
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/4ec0be19f8115889f61643fc25f6e3af5cd4c9e7
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/50ee49f1cd42985431636ee99a938e4b186b376b
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/54346c3d7a9932ab11743a99afed8a3ff0a65fea
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/57bf89f5b144f6e5af1146fb7aee1544c6b76950
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/58dc7756825ca46e5a601a5aeba7d26a071d373a
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/5fbd116f93790ce79c4beff8206e1b8e45c492a2
    • Triggering command: REDACTED, pid is -1 (http block)
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;) (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/68a5e7e1b37933841e823a588deff3ec3e757a00
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/6bd89fce8a0b198ac9fe98dc80362a92a2a13ae5
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/764e11fb6a26ee8f2d2d10778d531fd708f35d28
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;); Pkg.instantiate() (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/82dde00dc43d5a4762cf50fa070b654cc38a2e87
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/9d333db14895e8c7d4857ed228eb1e72d3b302ec
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/a1217ddfc979da3a2d9cf11b083688562e8ef333
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/a6fef72198944e64e0d818f2cc46275e663370c9
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/b18a4e7973e73e84cfd79222e2389565b323b588
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/bd5440f7f09ce75df59e7f5d2f5b8e52d24aae3c
    • Triggering command: REDACTED, pid is -1 (http block)
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;) (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/c0a22f012d3e98fd78afafe8e5152ace7a2276bc
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/c5e26fbadbad137fa2b7e3161a290a1becfec502
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/d7f69947e070a6a89aaf583e8aa2fada199fc292
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/edf3411246d6030e165a5fba513cbdcde5c72f79
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;); Pkg.instantiate() (http block)
  • https://api.github.com/repos/SciML/OrdinaryDiffEq.jl/tarball/f3976b6baeb64051f41ed461a1933b7501a4f38e
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/PreallocationTools.jl/tarball/e16b73bf892c55d16d53c9c0dbd0fb31cb7e25da
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/RecursiveArrayTools.jl/tarball/d0282d612f22dcad7b81cf487b746e63aa2a6709
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/RuntimeGeneratedFunctions.jl/tarball/cfcdc949c4660544ab0fdeed169561cb22f835f4
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/SciMLBase.jl/tarball/4ab0641a10918b1a2d8f59c22ff641fc478332e3
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/SciMLLogging.jl/tarball/0161be062570af4042cf6f69e3d5d0b0555b6927
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/SciMLOperators.jl/tarball/0e34162268883db01c04f988895a80d0659071bb
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/SciMLPublic.jl/tarball/0ba076dbdce87ba230fff48ca9bca62e1f345c9b
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;); Pkg.instantiate() (http block)
  • https://api.github.com/repos/SciML/SciMLStructures.jl/tarball/607f6867d0b0553e98fc7f725c9f9f13b4d01a32
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/Static.jl/tarball/49440414711eddc7227724ae6e570c7d5559a086
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/Sundials.jl/tarball/b2bdc0fe9e7987ae15c9b9507dc26ea048ece9f3
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/SymbolicIndexingInterface.jl/tarball/94c58884e013efff548002e8dc2fdd1cb74dfce5
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/SciML/TruncatedStacktraces.jl/tarball/ea3e54c2bdde39062abf5a9758a23735558705e1
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/Sienna-Platform/InfrastructureSystems.jl/tarball/89feb6c6cdf1899e0d31431d726dde870309bc1f
    • Triggering command: REDACTED, pid is -1 (http block)
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;) (http block)
  • https://api.github.com/repos/Sienna-Platform/PowerFlows.jl/tarball/6692fef935e837c48a876b4fb5c962872b847d6b
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/Sienna-Platform/PowerNetworkMatrices.jl/tarball/d9293ee63ff61619792d01783b0ffdf62fcfc695
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/Sienna-Platform/PowerSystemCaseBuilder.jl/tarball/ab9a5d728e749ec85ced41617ae2014fdda59765
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/Sienna-Platform/PowerSystems.jl/tarball/9b76bfe0cd4226839eef01c5fa57d37656828706
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/c42f/FastClosures.jl/tarball/acebe244d53ee1b461970f8910c235b259e772ef
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/fredrikekre/EnumX.jl/tarball/c49898e8438c828577f04b92fc9368c388ac783c
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/jkrumbiegel/Chain.jl/tarball/765487f32aeece2cf28aa7038e29c31060cb5a69
    • Triggering command: REDACTED, pid is -1 (http block)
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;) (http block)
  • https://api.github.com/repos/jonniedie/ConcreteStructs.jl/tarball/f749037478283d372048690eb3b5f92a79432b34
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/joshday/StringTemplates.jl/tarball/d78012ad7c6c22aba229a6363ec83ebc9ce5c135
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/jverzani/Mustache.jl/tarball/3cbd5dda543bc59f2e482607ccf84b633724fc32
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/jw3126/Setfield.jl/tarball/c5391c6ace3bc430ca630251d02ea9687169ca68
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/m-j-w/CpuId.jl/tarball/fcbb72b032692610bfbdb15018ac16a36cf2e406
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/nickrobinson251/PowerFlowData.jl/tarball/54d48d25e7d7511bbc8eb0ecff9e32f38c6f267c
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/queryverse/DataValueInterfaces.jl/tarball/bfc1187b79289637fa0ef6d4436ebdfe6905cbd6
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/queryverse/IteratorInterfaceExtensions.jl/tarball/a3f24677c21f5bbe9d2a714f95dcd58337fb2856
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/queryverse/TableTraits.jl/tarball/c06b2f539df1c6efa794486abfb6ed2022561a39
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/quinnj/JSON3.jl/tarball/411eccfe8aba0814ffa0fdf4860913ed09c34975
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/rdeits/CommonSubexpressions.jl/tarball/cda2cfaebb4be89c9084adaca7dd7333369715c5
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/rofinn/FilePathsBase.jl/tarball/3bab2c5aa25e7840a4b065805c0cdfc01f3068d2
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/ronisbr/PrettyTables.jl/tarball/624de6279ab7d94fc9f672f0068107eb6619732c
    • Triggering command: REDACTED, pid is -1 (http block)
  • https://api.github.com/repos/ronisbr/StringManipulation.jl/tarball/d05693d339e37d6ab134c5ab53c29fce5ee5d7d5
    • Triggering command: REDACTED, pid is -1 (http block)
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;) (http block)
  • https://api.github.com/repos/simonster/Reexport.jl/tarball/45e428421666073eab6f2da5c9d310d99bb12f9b
    • Triggering command: REDACTED, pid is -1 (http block)
  • pkg.julialang.org
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;); Pkg.instantiate() (dns block)
    • Triggering command: /usr/bin/julia julia --project=test -e using Pkg; Pkg.develop(path=&#34;.&#34;) (dns block)
    • Triggering command: /usr/local/julia1.12.6/bin/julia /usr/local/julia1.12.6/bin/julia -C native -J/usr/local/julia1.12.6/lib/julia/sys.so -g1 --output-o /home/REDACTED/.julia/compiled/v1.12/MKL_jll/jl_R1aMnN --output-ji /home/REDACTED/.julia/compiled/v1.12/MKL_jll/jl_bhXztZ --output-incremental=yes --startup-file=no --history-file=no --warn-overwrite=yes --color=yes - tnet/tools/git ame x6ScNz (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

@rodrigomha
Copy link
Copy Markdown
Contributor Author

@jd-lara Tests are passing. Documentation is missing this release in PF to pass: Sienna-Platform/PowerFlows.jl#359

@jd-lara
Copy link
Copy Markdown
Member

jd-lara commented Apr 29, 2026

@rodrigomha PF's in being registered.

@jd-lara jd-lara merged commit 77b8b4b into main Apr 29, 2026
5 of 7 checks passed
@jd-lara jd-lara deleted the rh/update_psy5 branch April 29, 2026 21:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants