Skip to content

Commit

Permalink
Merge pull request #84 from NREL-Sienna/jd/bump_deps
Browse files Browse the repository at this point in the history
Update Project.toml
  • Loading branch information
jd-lara authored Jun 26, 2024
2 parents d4e72b7 + adfed41 commit 5e3d6f1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PowerNetworkMatrices"
uuid = "bed98974-b02a-5e2f-9fe0-a103f5c450dd"
authors = ["Jose Daniel Lara", "Alessandro Francesco Castelli", "Sourabh Dalvi"]
version = "0.10.3"
version = "0.11.0"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand All @@ -17,11 +17,11 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
[compat]
DocStringExtensions = "~0.8, ~0.9"
HDF5 = "0.17"
InfrastructureSystems = "^1.20"
InfrastructureSystems = "2"
LinearAlgebra = "1"
MKL = "0.6"
KLU = "^0.6"
Pardiso = "^0.5.5"
PowerSystems = "3"
PowerSystems = "4"
SparseArrays = "1"
julia = "^1.6"
4 changes: 2 additions & 2 deletions test/test_ptdf.jl
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ end
r = branches_2[2].r,
x = branches_2[2].x,
b = branches_2[2].b,
rate = branches_2[2].rate,
angle_limits = branches_2[2].angle_limits,
rating = get_rating(branches_2[2]),
angle_limits = get_angle_limits(branches_2[2]),
),
)

Expand Down
4 changes: 2 additions & 2 deletions test/test_radial_branches.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ end

@testset "Radial Branches Large" begin
sys =
build_system(MatpowerTestSystems, "matpower_ACTIVSg10k_sys"; add_forecasts = false)
build_system(MatpowerTestSystems, "matpower_ACTIVSg10k_sys")
rb = RadialNetworkReduction(IncidenceMatrix(sys))
for (k, v) in get_bus_reduction_map(rb)
@test k v
Expand All @@ -40,7 +40,7 @@ end

@testset "Check reference bus in Radial Branches" begin
for name in ["matpower_ACTIVSg2000_sys", "matpower_ACTIVSg10k_sys"]
sys = build_system(MatpowerTestSystems, name; add_forecasts = false)
sys = build_system(MatpowerTestSystems, name)
a_mat = IncidenceMatrix(sys)
rb = RadialNetworkReduction(IncidenceMatrix(sys))
leaf_buses = Int64[]
Expand Down

2 comments on commit 5e3d6f1

@jd-lara
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Registration pull request created: JuliaRegistries/General/109829

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.11.0 -m "<description of version>" 5e3d6f159db243dd364d1d3d2d1aa7b6176db6f3
git push origin v0.11.0

Please sign in to comment.