Skip to content

Commit

Permalink
Update dependency versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
noahrhodes committed Apr 8, 2021
1 parent 9015734 commit a44068e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 15 deletions.
12 changes: 5 additions & 7 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,21 @@ version = "0.1.0"

[deps]
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
InfrastructureModels = "2030c09a-7f63-5d83-885d-db604e0e9cc0"
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
NetworkLayout = "46757867-2c16-5918-afeb-47bfcb05e46a"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
PowerModels = "c36e90e8-916a-50a6-bd94-075b64ef4655"
PyCall = "438e738f-606a-5dbb-bf0a-cddfbfd45ab0"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
VegaDatasets = "0ae4a718-28b7-58ec-9efb-cded64d6d5b4"
VegaLite = "112f6efa-9a02-5b7d-90c0-432ed331239a"

[compat]
InfrastructureModels = "~0.5"
Colors = "~0.12"
InfrastructureModels = "~0.5, ~0.6"
LightGraphs = "^1.3"
PowerModels = "~0.17"
VegaLite ="^2.0"
Plots = "~1"
PowerModels = "~0.17, ~0.18"
PyCall = "~1"
julia = "^1"

[extras]
Expand Down
2 changes: 0 additions & 2 deletions src/PowerPlots.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ include("plots/power_flow.jl")
include("plots/system_voltage.jl")
include("plots/networks.jl")

include("plots/power_vega.jl")

include("layouts/common.jl")
include("layouts/layout_engines.jl")

Expand Down
7 changes: 1 addition & 6 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ using Test
using PowerModels
import Ipopt

PowerModels.silence()
data = PowerModels.parse_file("$(joinpath(dirname(pathof(PowerModels)), ".."))/test/data/matpower/case5.m")

@testset "PowerPlots.jl" begin
Expand All @@ -23,10 +24,4 @@ data = PowerModels.parse_file("$(joinpath(dirname(pathof(PowerModels)), ".."))/t
# these functions work if we got this far
@test true


## Test vegalite plotting
case = PowerModels.parse_file("$(joinpath(dirname(pathof(PowerModels)), ".."))/test/data/matpower/case5.m")
plot_vega(case)
@test true

end

0 comments on commit a44068e

Please sign in to comment.