From 4c86c3b50061212eba76ca4e1ed0483d72b9660b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Agas=C3=B8ster=20Haaga?= Date: Tue, 8 Oct 2024 07:14:11 +0200 Subject: [PATCH 1/2] Fix deprecation I fixed the error disallowing different-type outcome containers. However, that introduced the deprecation warning again. This fixes the resulting deprecations warning. --- src/core/probabilities.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/probabilities.jl b/src/core/probabilities.jl index 6e2e31f6..f7f8613c 100644 --- a/src/core/probabilities.jl +++ b/src/core/probabilities.jl @@ -57,7 +57,7 @@ struct Probabilities{T, N, S} <: AbstractArray{T, N} dimlabels::NTuple{N, S} function Probabilities(x::AbstractArray{T, N}, - outcomes::Tuple{Vararg{V, N} where V}, + outcomes::Tuple{Vararg{AbstractVector, N}}, dimlabels::NTuple{N, S}; normed::Bool = false) where {T, N, S} if !normed # `normed` is an internal argument that skips checking the sum. From 185bfdc3605d9a420c3f90a7ba1988c1f469d608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Agas=C3=B8ster=20Haaga?= Date: Tue, 8 Oct 2024 12:31:29 +0200 Subject: [PATCH 2/2] Increment path version --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 0999bdd5..fb45e52a 100644 --- a/Project.toml +++ b/Project.toml @@ -2,7 +2,7 @@ name = "ComplexityMeasures" uuid = "ab4b797d-85ee-42ba-b621-05d793b346a2" authors = "Kristian Agasøster Haaga , George Datseries " repo = "https://github.com/juliadynamics/ComplexityMeasures.jl.git" -version = "3.7.1" +version = "3.7.2" [deps] Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"