Skip to content

Commit

Permalink
Merge branch 'main' into feat/merging-adria-docker
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Baker <[email protected]>
  • Loading branch information
PeterBaker0 committed Aug 22, 2024
2 parents 365ecc8 + 7bc7d09 commit be62954
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1.9'
version: '1.10'
- uses: julia-actions/cache@v2
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
Expand Down
17 changes: 1 addition & 16 deletions Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,7 @@

julia_version = "1.10.4"
manifest_format = "2.0"
project_hash = "e35ccc15450176d4831d929d116e08a04017e2ea"

[[deps.ADRIA]]
deps = ["ArchGDAL", "Bootstrap", "CSV", "Clustering", "Combinatorics", "CoralBlox", "CpuId", "DataFrames", "DataStructures", "Dates", "DimensionalData", "Distances", "Distributed", "Distributions", "FLoops", "FileIO", "GDAL_jll", "GeoDataFrames", "GeoFormatTypes", "GeoInterface", "Graphs", "HypothesisTests", "ImageIO", "InteractiveUtils", "Interpolations", "JMcDM", "JSON", "JuliennedArrays", "LinearAlgebra", "Logging", "MAT", "MLJ", "ModelParameters", "NetCDF", "OnlineStats", "OrderedCollections", "Pkg", "PkgVersion", "PrecompileTools", "Printf", "ProgressMeter", "Random", "Reexport", "RelocatableFolders", "SIRUS", "Setfield", "SimpleWeightedGraphs", "SparseArrays", "SpecialFunctions", "StableRNGs", "StaticArrays", "Statistics", "StatsBase", "StatsFuns", "Surrogates", "TOML", "YAXArrays", "Zarr"]
path = "/usr/local/src/adria"
uuid = "7dc409a7-fbe5-4c9d-b3e2-b0c19a6ba600"
version = "0.11.0"

[deps.ADRIA.extensions]
AvizExt = ["Makie", "GeoMakie", "GraphMakie"]

[deps.ADRIA.weakdeps]
BlackBoxOptim = "a134a8b2-14d6-55f6-9291-3336d3ab0209"
GeoMakie = "db073c08-6b98-4ee5-b6a4-5efafb3259c6"
GraphMakie = "1ecd5474-83a3-4783-bb4f-06765db800d2"
Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a"
project_hash = "1237e1adc6bf13edf1d6d7b99f4f4e0cf9fe6e74"

[[deps.ARFFFiles]]
deps = ["CategoricalArrays", "Dates", "Parsers", "Tables"]
Expand Down
4 changes: 3 additions & 1 deletion src/scenario.jl
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,9 @@ function run_model(

if in_debug_mode
# Log dhw tolerances if in debug mode
dhw_tol_mean_log[tstep, :, :] .= mean.(c_mean_t)
dhw_tol_mean_log[tstep, :, :] .= reshape(
mean.(c_mean_t), size(dhw_tol_mean_log)[2:3]
)
end
end

Expand Down

0 comments on commit be62954

Please sign in to comment.