Skip to content

Commit 061f354

Browse files
committed
Fix
1 parent 0b3620f commit 061f354

4 files changed

Lines changed: 5 additions & 7 deletions

File tree

.github/workflows/Test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ jobs:
8282
Pkg.Registry.update();
8383
Pkg.activate("./DifferentiationInterface/test");
8484
Pkg.develop([PackageSpec(; path="./DifferentiationInterface"), PackageSpec(; path="./DifferentiationInterfaceTest")]);
85-
Pkg.rm("DifferentiationInterface");
85+
VERSION < v"1.11" && Pkg.rm("DifferentiationInterface");
86+
Pkg.activate("./DifferentiationInterface/");
8687
test_kwargs = (; allow_reresolve=false, coverage=true);
8788
if ENV["JULIA_DI_PR_DRAFT"] == "true";
8889
Pkg.test("DifferentiationInterface"; julia_args=["-O1"], test_kwargs...);

DifferentiationInterface/Project.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,3 @@ Symbolics = "5.27.1, 6, 7"
7676
Tracker = "0.2.33"
7777
Zygote = "0.6.69, 0.7"
7878
julia = "1.10"
79-
80-
[sources]
81-
DifferentiationInterface = { path = ".." }

DifferentiationInterface/test/Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,6 @@ StableRNGs = "1.0.1"
4040
StaticArrays = "1.9.15"
4141
Test = "1"
4242
julia = "1.10.10"
43+
44+
[sources]
45+
DifferentiationInterface = { path = ".." }

DifferentiationInterfaceTest/Project.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,3 @@ Statistics = "1"
5252
Test = "1"
5353
Zygote = "0.6, 0.7"
5454
julia = "1.10"
55-
56-
[sources]
57-
DifferentiationInterfaceTest = { path = ".." }

0 commit comments

Comments
 (0)