From 32ff6ed5edf3fc5976c9b2f86f451ba4f400aeb3 Mon Sep 17 00:00:00 2001 From: giopaglia <24519853+giopaglia@users.noreply.github.com> Date: Sun, 14 May 2023 15:56:27 +0200 Subject: [PATCH 1/3] Fixes --- Project.toml | 8 ++++++++ src/experimental/_expansion.jl | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 938e695..764f0a0 100644 --- a/Project.toml +++ b/Project.toml @@ -19,7 +19,15 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" [compat] +Catch22 = "0.4" +DataFrames = "1" HypothesisTests = "0.10" +IterTools = "1" +OrderedCollections = "1" +PyCall = "1" +Reexport = "1" +Revise = "3" +StatsBase = "0.34" julia = "1" [extras] diff --git a/src/experimental/_expansion.jl b/src/experimental/_expansion.jl index 221f1a2..8b0dd20 100644 --- a/src/experimental/_expansion.jl +++ b/src/experimental/_expansion.jl @@ -118,7 +118,7 @@ function retrive_groups( attributes::AbstractVector{Symbol}, groupby::Union{Symbol, Tuple{Symbol, Symbol}} )::Vector{Vector{Symbol}} - groups = Dict{String, Vector{Symbol}}() + groups = Dict{String,Vector{Symbol}}() # from: https://discourse.julialang.org/t/how-can-i-access-multiple-values-of-a-dictionary-using-a-tuple-of-keys/56868/3 groupids = collect(getindex.(Ref(GROUPBY_ID_DICT), groupby)) # collect(Tuple) -> Vector @@ -189,7 +189,7 @@ function retrive_groups( awmds::AbstractVector{<:AWMDescriptor}, groupby::Union{Symbol, Tuple{Symbol, Symbol}}, )::Vector{Vector{AWMDescriptor}} - groups = Dict{String, Vector{AWMDescriptor}}() + groups = Dict{String,Vector{AWMDescriptor}}() # from: https://discourse.julialang.org/t/how-can-i-access-multiple-values-of-a-dictionary-using-a-tuple-of-keys/56868/3 groupids = [ collect(getindex.(Ref(GROUPBY_ID_DICT), groupby))... ] # collect(Tuple) -> Vector for awm in awmds From 4de0cf139ea6f3c61144060d0d38c47353e37c43 Mon Sep 17 00:00:00 2001 From: ferdiu Date: Fri, 30 Jun 2023 16:12:08 +0200 Subject: [PATCH 2/3] update documentation Signed-off-by: ferdiu --- .github/workflows/Documentation.yml | 22 ++++++++++++++++++++++ docs/make.jl | 6 +++++- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/Documentation.yml diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml new file mode 100644 index 0000000..af505d2 --- /dev/null +++ b/.github/workflows/Documentation.yml @@ -0,0 +1,22 @@ +name: Documentation +on: + push: + branches: + - main + tags: '*' + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: julia-actions/setup-julia@latest + with: + version: '1.9' + - name: Install dependencies + run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' + - name: Build and deploy + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token + run: julia --project=docs/ docs/make.jl diff --git a/docs/make.jl b/docs/make.jl index 329a2e6..f133f38 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -19,5 +19,9 @@ makedocs(; ) deploydocs(; - repo="github.com/aclai-lab/SoleFeatures.jl", + repo = "github.com/aclai-lab/SoleFeatures.jl", + devbranch = "main", + target = "build", + branch = "gh-pages", + versions = ["stable" => "v^", "v#.#"], ) From 0c34e9f4b3fc23ec5178c51cd97b54740b249ea1 Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Tue, 23 Jan 2024 00:51:57 +0000 Subject: [PATCH 3/3] CompatHelper: bump compat for Catch22 to 0.5, (keep existing compat) --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 764f0a0..e623866 100644 --- a/Project.toml +++ b/Project.toml @@ -19,7 +19,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" [compat] -Catch22 = "0.4" +Catch22 = "0.4, 0.5" DataFrames = "1" HypothesisTests = "0.10" IterTools = "1"