From f9874c3f0c28672864963326570d6345e54c147d Mon Sep 17 00:00:00 2001 From: Alexandr Romanenko Date: Fri, 7 May 2021 17:07:10 +0300 Subject: [PATCH] Fix ci_prepare --- test/ci_prepare.jl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/ci_prepare.jl b/test/ci_prepare.jl index 3d6c88e..caa08bf 100644 --- a/test/ci_prepare.jl +++ b/test/ci_prepare.jl @@ -1,10 +1,10 @@ using Pkg Pkg.update() -Pkg.add(PackageSpec(url="https://github.com/plotly/DashBase.jl.git")) -Pkg.add(PackageSpec(url="https://github.com/plotly/dash-html-components.git", rev="master")) -Pkg.add(PackageSpec(url="https://github.com/plotly/dash-core-components.git", rev="master")) -Pkg.add(PackageSpec(url="https://github.com/plotly/dash-table.git", rev="master")) -Pkg.add(PackageSpec(url="https://github.com/plotly/Dash.jl.git", rev=ENV["CIRCLE_BRANCH"])) +Pkg.develop(path = ".") +Pkg.add("DashBase") +Pkg.add("DashHtmlComponents") +Pkg.add("DashCoreComponents") +Pkg.add("DashTable") Pkg.add("HTTP") Pkg.build("Dash") Pkg.build("DashHtmlComponents")