From f4be9ea181bb675d35232fafd224e543a19604ed Mon Sep 17 00:00:00 2001 From: Stefan Krastanov Date: Wed, 27 Aug 2025 08:11:59 -0400 Subject: [PATCH 1/3] Automated commit made by MassInstallAction.jl --- .github/workflows/downgrade.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/downgrade.yml diff --git a/.github/workflows/downgrade.yml b/.github/workflows/downgrade.yml new file mode 100644 index 00000000..e3a2b802 --- /dev/null +++ b/.github/workflows/downgrade.yml @@ -0,0 +1,29 @@ +name: Downgrade +on: + pull_request: + branches: [master, main] + paths-ignore: + - 'docs/**' + push: + branches: [master, main] + paths-ignore: + - 'docs/**' +env: + PYTHON: ~ +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + version: ['1.10'] + steps: + - uses: actions/checkout@v5 + - uses: julia-actions/setup-julia@v1 + with: + version: ${{ matrix.version }} + - uses: julia-actions/julia-downgrade-compat@v2 + with: + skip: Pkg,TOML,InteractiveUtils,Random,LinearAlgebra + - uses: julia-actions/cache@v2 + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 From 7b22b127d337e73062a076b2a6ae9e323546d180 Mon Sep 17 00:00:00 2001 From: Stefan Krastanov Date: Wed, 27 Aug 2025 08:29:58 -0400 Subject: [PATCH 2/3] find_root! is not available in early versions of DataStructures --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 6cf7f38c..efc3ea51 100644 --- a/Project.toml +++ b/Project.toml @@ -17,7 +17,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" [compat] ArnoldiMethod = "0.4" Distributed = "1" -DataStructures = "0.17, 0.18, 0.19" +DataStructures = "0.18, 0.19" Inflate = "0.1.3" LinearAlgebra = "1" Random = "1" From 7c2f3fcf4aaec8f602e0d191c4be2f2de4e87f98 Mon Sep 17 00:00:00 2001 From: Stefan Krastanov Date: Wed, 27 Aug 2025 08:48:08 -0400 Subject: [PATCH 3/3] SimpleTraits permit docstrings only after 0.9.1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index efc3ea51..a5a3112e 100644 --- a/Project.toml +++ b/Project.toml @@ -22,7 +22,7 @@ Inflate = "0.1.3" LinearAlgebra = "1" Random = "1" SharedArrays = "1" -SimpleTraits = "0.9" +SimpleTraits = "0.9.1" SparseArrays = "1" Statistics = "1" julia = "1.10" \ No newline at end of file