Skip to content

Commit 8340215

Browse files
authored
Merge pull request #168 from NREL-Sienna/psy5
Psy5
2 parents c8baae5 + 33518f0 commit 8340215

File tree

9 files changed

+3508
-1114
lines changed

9 files changed

+3508
-1114
lines changed

Artifacts.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[CaseData]
2-
git-tree-sha1 = "45fbc4fe058ae508e0d03c697ca276c3484a9c5e"
2+
git-tree-sha1 = "8dd82ef8ac86f095c68b933b3aefb0f96aa7bb1b"
33
lazy = true
44

55
[[CaseData.download]]
6-
url = "https://github.com/NREL-Sienna/PowerSystemsTestData/archive/refs/tags/3.2.tar.gz"
7-
sha256 = "644ed7c6eae49e048175f81fc4e0f36c46665d8cf8dbf9ce21bcee936b3b4e5e"
6+
url = "https://github.com/NREL-Sienna/PowerSystemsTestData/archive/refs/tags/4.0.0.tar.gz"
7+
sha256 = "2a98597ce1080b0087fd94e625a8f11111969ecd327ec8054aa11ce3ae1ef401"
88

99
[rts]
10-
git-tree-sha1 = "5098f357bad765bfefcff58f080818863ca776bd"
10+
git-tree-sha1 = "c257b2c37b981f261fdc328b0fb9b96436a96537"
1111
lazy = true
1212

1313
[[rts.download]]
14-
url = "https://github.com/GridMod/RTS-GMLC/archive/refs/tags/v0.2.2.tar.gz"
15-
sha256 = "f7a816f2390b96d44fa931c2790e2ec5ef81d0deb503c4c719b25ec1b585e2c2"
14+
url = "https://github.com/GridMod/RTS-GMLC/archive/refs/tags/v0.2.3.tar.gz"
15+
sha256 = "993429b8dc5f096e62479ca3b8551d52a53941322b452c825d12881cda915eae"

Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PowerSystemCaseBuilder"
22
uuid = "f00506e0-b84f-492a-93c2-c0a9afc4364e"
33
authors = ["Sourabh Dalvi", "Jose Daniel Lara"]
4-
version = "1.3.11"
4+
version = "2.0.0"
55

66
[deps]
77
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
@@ -23,17 +23,17 @@ TimeSeries = "9e3dc215-6440-5c97-bce1-76c03772f85e"
2323
[compat]
2424
CSV = "~0.10"
2525
DataFrames = "1"
26-
DataStructures = "~0.18"
26+
DataStructures = "^0.18, ^0.19"
2727
Dates = "1"
2828
DocStringExtensions = "0.9.3"
2929
Downloads = "1.6"
3030
HDF5 = "0.17"
31-
InfrastructureSystems = "2"
31+
InfrastructureSystems = "3"
3232
JSON3 = "1"
3333
LazyArtifacts = "1"
34-
PowerSystems = "^4.5"
34+
PowerSystems = "5"
3535
PrettyTables = "2"
3636
Random = "1"
3737
SHA = "0.7"
38-
TimeSeries = "~0.23, 0.24"
38+
TimeSeries = "^0.24, ^0.25"
3939
julia = "^1.6"

src/definitions.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
const PACKAGE_DIR = joinpath(dirname(dirname(pathof(PowerSystemCaseBuilder))))
22
const DATA_DIR =
3-
joinpath(LazyArtifacts.artifact"CaseData", "PowerSystemsTestData-3.2")
3+
joinpath(LazyArtifacts.artifact"CaseData", "PowerSystemsTestData-4.0.0")
44

5-
const RTS_DIR = joinpath(LazyArtifacts.artifact"rts", "RTS-GMLC-0.2.2")
5+
const RTS_DIR = joinpath(LazyArtifacts.artifact"rts", "RTS-GMLC-0.2.3")
66

77
const SYSTEM_DESCRIPTORS_FILE = joinpath(PACKAGE_DIR, "src", "system_descriptor.jl")
88

0 commit comments

Comments
 (0)