From 748e5ebc45df1a218dfccdc58537dd1f54d173f6 Mon Sep 17 00:00:00 2001 From: DLarby <42186355+Larbino1@users.noreply.github.com> Date: Wed, 15 Jan 2025 19:15:38 +0000 Subject: [PATCH 1/4] Update CI.yml to point to main branch instead of master --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e1749d4..501988b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -2,11 +2,11 @@ name: CI on: push: branches: - - master + - main tags: ['*'] pull_request: branches: - - master + - main concurrency: # Skip intermediate builds: always. # Cancel intermediate builds: only if it is a pull request build. From 4ca9fd1c99d013fd4136db5c2e181fa1c0a65e4d Mon Sep 17 00:00:00 2001 From: DLarby <42186355+Larbino1@users.noreply.github.com> Date: Wed, 15 Jan 2025 19:18:53 +0000 Subject: [PATCH 2/4] Update CI.yml Julia versions --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 501988b..cf197c2 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -21,7 +21,8 @@ jobs: matrix: version: # - '1.0' - - '1.9' + - '1.10' + - '1.11' - 'nightly' os: - ubuntu-latest From 12b77028d02dc0fbda62946089eedca7be4d0a14 Mon Sep 17 00:00:00 2001 From: Daniel Larby Date: Wed, 15 Jan 2025 19:21:29 +0000 Subject: [PATCH 3/4] Fix Project.toml compat --- Project.toml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Project.toml b/Project.toml index ea7b0b9..ce4a7f3 100644 --- a/Project.toml +++ b/Project.toml @@ -45,28 +45,28 @@ VMRobotControlMakieExt = "Makie" [compat] BenchmarkTools = "1" -ColorTypes = ">= 0.11" -Colors = ">= 0.12" -DataStructures = ">= 0.18" +ColorTypes = "0.11" +Colors = "0.12" +DataStructures = "0.18" DifferentialEquations = "7" DiffResults = "1" -DigitalAssetExchangeFormatIO = ">= 1.1.2" # This is required, previous versions broken +DigitalAssetExchangeFormatIO = "1.1.2" # This is required, previous versions broken EzXML = "1" FileIO = "1" -ForwardDiff = ">= 0.10" +ForwardDiff = "0.10" FunctionWrappers = "1" -GeometryBasics = ">= 0.4" +GeometryBasics = "0.4" Graphs = "1" -JSON = ">= 0.21" -LoopVectorization = ">= 0.12" -Makie = ">= 0.21" -MeshIO = ">= 0.4" -Observables = ">= 0.5" +JSON = "0.21" +LoopVectorization = "0.12" +Makie = "0.21" +MeshIO = "0.4" +Observables = "0.5" OrderedCollections = "1" -PreallocationTools = ">= 0.4" +PreallocationTools = "0.4" ResultTypes = "4" -StaticArrays = ">= 1.8.1" # Manual -StatsBase = ">= 0.34" +StaticArrays = "1.8.1" # Manual +StatsBase = "0.34" Pkg = "1" SparseArrays = "1" From d46b57a71bbf3865793c23828c249ccb2c4244f4 Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Thu, 16 Jan 2025 01:17:10 +0000 Subject: [PATCH 4/4] CompatHelper: bump compat for GeometryBasics to 0.5, (keep existing compat) --- Project.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Project.toml b/Project.toml index ce4a7f3..044f62e 100644 --- a/Project.toml +++ b/Project.toml @@ -48,27 +48,27 @@ BenchmarkTools = "1" ColorTypes = "0.11" Colors = "0.12" DataStructures = "0.18" -DifferentialEquations = "7" DiffResults = "1" -DigitalAssetExchangeFormatIO = "1.1.2" # This is required, previous versions broken +DifferentialEquations = "7" +DigitalAssetExchangeFormatIO = "1.1.2" EzXML = "1" FileIO = "1" ForwardDiff = "0.10" FunctionWrappers = "1" -GeometryBasics = "0.4" +GeometryBasics = "0.4, 0.5" Graphs = "1" JSON = "0.21" LoopVectorization = "0.12" -Makie = "0.21" +Makie = "0.21" MeshIO = "0.4" Observables = "0.5" OrderedCollections = "1" +Pkg = "1" PreallocationTools = "0.4" ResultTypes = "4" -StaticArrays = "1.8.1" # Manual -StatsBase = "0.34" -Pkg = "1" SparseArrays = "1" +StaticArrays = "1.8.1" +StatsBase = "0.34" [extras] DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"