Skip to content

Commit a6bddef

Browse files
committed
make adjustmemnts to close #2
1 parent f8cd5e2 commit a6bddef

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

src/methods.jl

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ end
2828
# develop MLJModelRegistryTools into the specifified `registry` project:
2929
function setup(registry)
3030
ex = quote
31-
# TODO: replace Line 1 with Line 2 after MLJModelRegistry is registered at General:
32-
Pkg.develop(path=$ROOT) # Line 1
33-
# Pkg.add(MLJModelRegistryTools) # Line 2
31+
# Pkg.develop(path=$ROOT)
32+
Pkg.add("MLJModelRegistryTools")
3433
end
3534
future = GenericRegistry.run([], ex; environment=registry)
3635
fetch(future)
@@ -66,10 +65,8 @@ function metadata(pkg; registry="", check_traits=true)
6665
setup=()
6766
else
6867
setup = quote
69-
# TODO: replace Line 1 with Line 2 after MLJModelRegistry is registered at
70-
# General:
71-
Pkg.develop(path=$ROOT) # Line 1
72-
# Pkg.add(MLJModelRegistryTools) # Line 2
68+
# Pkg.develop(path=$ROOT)
69+
Pkg.add("MLJModelRegistryTools")
7370
end
7471
end
7572
program = quote

0 commit comments

Comments
 (0)