From baa68261f7d94e6059434f3680132eae3bdc60fe Mon Sep 17 00:00:00 2001 From: John Omotani Date: Sun, 19 Nov 2023 11:55:55 +0000 Subject: [PATCH] Exclude version 1.14 of HDF5_jll package Version 1.14 of the HDF5_jll package causes a bug (see #148), so set the `[compat]` section of Project.toml to exclude this version (hoping the bug will be fixed by version 1.15 at the latest, some future patch release like 1.14.3 might also be OK though). HDF5_jll is not used directly in moment_kinetics, and so is only included in the Project.toml in order to apply this version restriction. It should probably be removed once the latest version has fixed the bug. --- Project.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Project.toml b/Project.toml index 76563d054..ed635ae29 100644 --- a/Project.toml +++ b/Project.toml @@ -12,6 +12,7 @@ DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab" FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341" Glob = "c27321d9-0574-5035-807b-f59d2c89b15c" HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f" +HDF5_jll = "0234f1f7-429e-5d53-9886-15a909be8d59" IJulia = "7073ff75-c697-5162-941a-fcdaad2a7d2a" IfElse = "615f187c-cbe4-4ef1-ba3b-2fcf58d6d173" Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" @@ -46,4 +47,5 @@ UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4" Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d" [compat] +HDF5_jll = "<1.14, >=1.15" julia = "1.7.0"