From ea8ff38ae328bbe1ad1d5aff8618ed22ae80d781 Mon Sep 17 00:00:00 2001 From: jverzani Date: Sat, 3 Aug 2024 15:35:33 -0400 Subject: [PATCH 1/3] remove symbolics extension --- Project.toml | 10 ++-------- test/runtests.jl | 2 +- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/Project.toml b/Project.toml index 536f12d..dd099e4 100644 --- a/Project.toml +++ b/Project.toml @@ -14,10 +14,8 @@ SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b" SymPyCore = "458b697b-88f0-4a86-b56b-78b75cfb3531" [weakdeps] -Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" [extensions] -SymPyPythonCallSymbolicsExt = "Symbolics" [compat] CommonEq = "0.2.1" @@ -26,16 +24,12 @@ CondaPkg = "0.2" LinearAlgebra = "1.6.1" PythonCall = "0.9" SpecialFunctions = "0.8, 0.9, 0.10, 1.0, 2" -Symbolics = "5" -SymbolicUtils = "1" -SymPyCore = "0.2, 1" +SymPyCore = "0.2.5, 1" julia = "1.6.1" [extras] -SymbolicUtils = "d1185830-fcd6-423d-90d6-eec64667417b" -Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [targets] -test = ["SymbolicUtils", "Symbolics", "Test"] +test = ["Test"] diff --git a/test/runtests.jl b/test/runtests.jl index a8b0f5d..8c3fd82 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -3,4 +3,4 @@ using SymPyPythonCall path = joinpath(pathof(SymPyPythonCall.SymPyCore), "../../test") include(joinpath(path, "runtests-sympycore.jl")) -VERSION >= v"1.9.0" && include("test-extensions.jl") +## VERSION >= v"1.9.0" && include("test-extensions.jl") From 25867cb644a19fc118c70ecfeb4c0a05079880b9 Mon Sep 17 00:00:00 2001 From: jverzani Date: Sat, 3 Aug 2024 15:35:46 -0400 Subject: [PATCH 2/3] version bump --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index dd099e4..69c7a2b 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SymPyPythonCall" uuid = "bc8888f7-b21e-4b7c-a06a-5d9c9496438c" authors = ["jverzani and contributors"] -version = "0.3.0" +version = "0.4.0" [deps] From 7b7b90b7ec10b9c6818e2fbe63e59b2111873b51 Mon Sep 17 00:00:00 2001 From: jverzani Date: Sat, 3 Aug 2024 16:24:05 -0400 Subject: [PATCH 3/3] term interface --- Project.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Project.toml b/Project.toml index 69c7a2b..b2208b8 100644 --- a/Project.toml +++ b/Project.toml @@ -13,10 +13,6 @@ PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d" SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b" SymPyCore = "458b697b-88f0-4a86-b56b-78b75cfb3531" -[weakdeps] - -[extensions] - [compat] CommonEq = "0.2.1" CommonSolve = "0.2" @@ -25,11 +21,15 @@ LinearAlgebra = "1.6.1" PythonCall = "0.9" SpecialFunctions = "0.8, 0.9, 0.10, 1.0, 2" SymPyCore = "0.2.5, 1" +TermInterface = "2" julia = "1.6.1" [extras] Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" +LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" +SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b" +TermInterface = "8ea1fca8-c5ef-4a55-8b96-4e9afe9c9a3c" [targets] -test = ["Test"] +test = ["Test", "LinearAlgebra", "SpecialFunctions", "TermInterface"]