From b4f4b9d9efa41cf31e2d6119cfb95aa403da0de8 Mon Sep 17 00:00:00 2001 From: Alex Ames Date: Tue, 17 Sep 2024 15:46:38 -0600 Subject: [PATCH] Bump thermo version; tweak reference tests --- CondaPkg.toml | 10 +++++++++- Project.toml | 2 +- test/runtests.jl | 4 ++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CondaPkg.toml b/CondaPkg.toml index 4981028..e819897 100644 --- a/CondaPkg.toml +++ b/CondaPkg.toml @@ -1,4 +1,12 @@ [deps.thermo] channel = "conda-forge" -version = "0.1.40" +version = "0.3.0" + +[deps.fluids] +channel = "conda-forge" +version = "1.0.26" + +[deps.chemicals] +channel = "conda-forge" +version = "1.2.0" diff --git a/Project.toml b/Project.toml index fbf259b..528dbcb 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ authors = ["Alex Ames and contributors"] name = "PyThermo" uuid = "6fae04a5-42e9-4d0c-90a8-26d1a9434b6b" -version = "0.2.5" +version = "0.3.0" [compat] CondaPkg = "0.2" diff --git a/test/runtests.jl b/test/runtests.jl index bd3cec5..5605dba 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -8,7 +8,7 @@ using Aqua @testset "Species" begin SF6 = Species("SF6") - @test isapprox(ustrip(density(SF6)), 6.0383, rtol=2e-3) + @test isapprox(ustrip(density(SF6)), 5.9699, rtol=2e-3) SF6.calculate(T = 500) @test isapprox(ustrip(density(SF6)), 3.5657, rtol=2e-3) end @@ -32,5 +32,5 @@ end end @testset "Aqua" begin - Aqua.test_all(PyThermo; ambiguities=false) + Aqua.test_all(PyThermo; ambiguities=false, persistent_tasks=false) end