From e402763e004f48a80eee48d57271f903519ea42d Mon Sep 17 00:00:00 2001 From: Seth Axen Date: Tue, 13 Feb 2024 23:48:19 +0100 Subject: [PATCH] Replace `test/Project.toml` with an extras section in `Project.toml` --- Project.toml | 32 ++++++++++++++++++++++++++++++++ test/Project.toml | 40 ---------------------------------------- 2 files changed, 32 insertions(+), 40 deletions(-) delete mode 100644 test/Project.toml diff --git a/Project.toml b/Project.toml index 925435c..1b7fa99 100644 --- a/Project.toml +++ b/Project.toml @@ -18,12 +18,25 @@ StatsFuns = "4c63d2b9-4356-54db-8cca-17b64c39e42c" Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" [compat] +Aqua = "0.8.1" AbstractFFTs = "0.5, 1" DataAPI = "1.8" DataStructures = "0.18.3" Distributions = "0.25.57" +DynamicHMC = "3.2" +EvoTrees = "0.14.7, 0.15, 0.16" +FFTW = "1.1" LinearAlgebra = "1.6" +LogDensityProblems = "0.12, 1, 2" +LogExpFunctions = "0.3.26" +MLJBase = "0.20, 0.21, 1" +MLJDecisionTreeInterface = "0.3, 0.4" +MLJIteration = "0.5, 0.6" +MLJLIBSVMInterface = "0.2" MLJModelInterface = "1.6" +MLJModels = "0.16" +MLJXGBoostInterface = "0.3.4" +OffsetArrays = "1.11" Random = "1.6" SpecialFunctions = "1.8.4, 2" Statistics = "1.6" @@ -31,3 +44,22 @@ StatsBase = "0.33.3, 0.34" StatsFuns = "1" Tables = "1.11" julia = "1.6" + +[extras] +Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" +DynamicHMC = "bbc10e6e-7c05-544b-b16e-64fede858acb" +EvoTrees = "f6006082-12f8-11e9-0c9c-0d5d367ab1e5" +FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341" +LogDensityProblems = "6fdf6af0-433a-55f7-b3ed-c6c6e0b8df7c" +LogExpFunctions = "2ab3a3ac-af41-5b50-aa03-7779005ae688" +MLJBase = "a7f614a8-145f-11e9-1d2a-a57a1082229d" +MLJDecisionTreeInterface = "c6f25543-311c-4c74-83dc-3ea6d1015661" +MLJIteration = "614be32b-d00c-4edb-bd02-1eb411ab5e55" +MLJLIBSVMInterface = "61c7150f-6c77-4bb1-949c-13197eac2a52" +MLJModels = "d491faf4-2d78-11e9-2867-c94bc002c0b7" +MLJXGBoostInterface = "54119dfa-1dab-4055-a167-80440f4f7a91" +OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881" +Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" + +[targets] +test = ["Aqua", "DynamicHMC", "EvoTrees", "FFTW", "LogDensityProblems", "LogExpFunctions", "MLJBase", "MLJDecisionTreeInterface", "MLJIteration", "MLJLIBSVMInterface", "MLJModels", "MLJXGBoostInterface", "OffsetArrays", "Test"] diff --git a/test/Project.toml b/test/Project.toml deleted file mode 100644 index aa96ce4..0000000 --- a/test/Project.toml +++ /dev/null @@ -1,40 +0,0 @@ -[deps] -Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" -Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" -DynamicHMC = "bbc10e6e-7c05-544b-b16e-64fede858acb" -EvoTrees = "f6006082-12f8-11e9-0c9c-0d5d367ab1e5" -FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341" -LogDensityProblems = "6fdf6af0-433a-55f7-b3ed-c6c6e0b8df7c" -LogExpFunctions = "2ab3a3ac-af41-5b50-aa03-7779005ae688" -MLJBase = "a7f614a8-145f-11e9-1d2a-a57a1082229d" -MLJDecisionTreeInterface = "c6f25543-311c-4c74-83dc-3ea6d1015661" -MLJIteration = "614be32b-d00c-4edb-bd02-1eb411ab5e55" -MLJLIBSVMInterface = "61c7150f-6c77-4bb1-949c-13197eac2a52" -MLJModels = "d491faf4-2d78-11e9-2867-c94bc002c0b7" -MLJXGBoostInterface = "54119dfa-1dab-4055-a167-80440f4f7a91" -OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881" -Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" -Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" -StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" -Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" -Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" - -[compat] -Aqua = "0.8.1" -Distributions = "0.25.57" -DynamicHMC = "3.2" -EvoTrees = "0.14.7, 0.15, 0.16" -FFTW = "1.1" -LogDensityProblems = "0.12, 1, 2" -LogExpFunctions = "0.3.26" -MLJBase = "0.20, 0.21, 1" -MLJDecisionTreeInterface = "0.3, 0.4" -MLJIteration = "0.5, 0.6" -MLJLIBSVMInterface = "0.2" -MLJModels = "0.16" -MLJXGBoostInterface = "0.3.4" -OffsetArrays = "1.11" -Statistics = "1.6" -StatsBase = "0.33.3, 0.34" -Tables = "1.11" -julia = "1.6"