Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
version:
#- '1.0'
- '1.9'
- '1.10.3'
#- 'nightly'
os:
- ubuntu-latest
Expand All @@ -34,7 +34,9 @@ jobs:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- name: Install TuLiPa Package
run: julia -e 'using Pkg; Pkg.add(url = "https://github.com/NVE/TuLiPa.git", rev = "redesign_JulES")'
- name: Add TuLiPa from GitHub URL
run: julia --project=@. -e 'using Pkg; Pkg.develop(PackageSpec(url = "https://github.com/NVE/TuLiPa.git"))'
- name: Instantiate Environment
run: julia --project=@. -e 'using Pkg; Pkg.instantiate()'
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-runtest@v1
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ ComponentArrays = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66"
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"

[compat]
julia = "1.9.2"
julia = "1.10.3"
OrdinaryDiffEq = "6.66.0"
ComponentArrays = "0.15.17"
Interpolations = "0.16.1"
JLD2 = "0.5.15"

[extensions]
IfmExt = ["ComponentArrays", "Interpolations", "JLD2", "OrdinaryDiffEq"]
IfmExt = ["ComponentArrays", "Interpolations", "JLD2", "OrdinaryDiffEq"]
2 changes: 1 addition & 1 deletion src/io.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1705,7 +1705,7 @@ function get_output_main_local()

data["batnames"] = batterynames
data["batmatrix"] = db.output.batterylevels
data["batindex"] = x2
data["batindex"] = x1

data["statenames"] = db.output.statenames
data["statematrix"] = permutedims(db.output.statematrix)
Expand Down
Loading