From 94b47df3a8c4d4acd92fce7e4e669df680b57e32 Mon Sep 17 00:00:00 2001 From: hhaensel Date: Tue, 21 Jan 2025 18:20:17 +0100 Subject: [PATCH] change CondaPkg environment --- Project.toml | 14 -------------- test/CondaPkg.toml | 2 ++ test/Project.toml | 6 ++++++ test/Wrap.jl | 2 +- 4 files changed, 9 insertions(+), 15 deletions(-) create mode 100644 test/CondaPkg.toml create mode 100644 test/Project.toml diff --git a/Project.toml b/Project.toml index 25f9956b..a1bf45e8 100644 --- a/Project.toml +++ b/Project.toml @@ -16,9 +16,7 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" UnsafePointers = "e17b2a0c-0bdf-430a-bd0c-3a23cae4ff39" [compat] -Aqua = "0 - 999" CondaPkg = "0.2.23" -DataFrames = "1.7.0" Dates = "1" Libdl = "1" MacroTools = "0.5" @@ -27,17 +25,5 @@ Pkg = "1" Requires = "1" Serialization = "1" Tables = "1" -Test = "1" -TestItemRunner = "0 - 999" UnsafePointers = "1" julia = "1.6.1" - -[extras] -Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" -CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab" -DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" -Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" -TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a" - -[targets] -test = ["Aqua", "CondaPkg", "DataFrames", "Test", "TestItemRunner"] diff --git a/test/CondaPkg.toml b/test/CondaPkg.toml new file mode 100644 index 00000000..8248a602 --- /dev/null +++ b/test/CondaPkg.toml @@ -0,0 +1,2 @@ +[deps] +pandas = "" diff --git a/test/Project.toml b/test/Project.toml new file mode 100644 index 00000000..0a1205ee --- /dev/null +++ b/test/Project.toml @@ -0,0 +1,6 @@ +[deps] +CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab" +DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" +Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" +PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d" +TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a" diff --git a/test/Wrap.jl b/test/Wrap.jl index 03991e2c..03deb967 100644 --- a/test/Wrap.jl +++ b/test/Wrap.jl @@ -441,7 +441,7 @@ end using Tables using DataFrames using CondaPkg - CondaPkg.add("pandas") + # CondaPkg.add("pandas") @test PyPandasDataFrame isa Type x = (x = [1, 2, 3], y = ["a", "b", "c"]) py_df = pytable(x, :pandas)