From d2cd1d7a0c92888446009c26481bc4fcc3e126c6 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Tue, 5 Oct 2021 16:27:17 -0400 Subject: [PATCH 1/3] Test master, again --- tutorials/introduction/01-ode_introduction.jmd | 1 + 1 file changed, 1 insertion(+) diff --git a/tutorials/introduction/01-ode_introduction.jmd b/tutorials/introduction/01-ode_introduction.jmd index d646ecac..2817323a 100644 --- a/tutorials/introduction/01-ode_introduction.jmd +++ b/tutorials/introduction/01-ode_introduction.jmd @@ -3,6 +3,7 @@ title: An Intro to DifferentialEquations.jl author: Chris Rackauckas --- + ## Basic Introduction Via Ordinary Differential Equations This notebook will get you started with DifferentialEquations.jl by introducing you to the functionality for solving ordinary differential equations (ODEs). The corresponding documentation page is the [ODE tutorial](https://docs.sciml.ai/dev/tutorials/ode_example/). While some of the syntax may be different for other types of equations, the same general principles hold in each case. Our goal is to give a gentle and thorough introduction that highlights these principles in a way that will help you generalize what you have learned. From d71eba96e731eeefcddd125631d769ac97a7046d Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Tue, 5 Oct 2021 14:41:47 -0700 Subject: [PATCH 2/3] Add Pkg.status() output --- src/SciMLTutorials.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/SciMLTutorials.jl b/src/SciMLTutorials.jl index a802e176..0b9f40ca 100644 --- a/src/SciMLTutorials.jl +++ b/src/SciMLTutorials.jl @@ -16,6 +16,9 @@ function weave_file(folder,file,build_list=default_builds) Pkg.activate(folder) Pkg.instantiate() Pkg.build() + + @info("Printing out `Pkg.status()`") + Pkg.status() end args = Dict{Symbol,String}(:folder=>folder,:file=>file) From 61e3048742bc855ff8930ca1035411cd75e6dedb Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Tue, 5 Oct 2021 17:45:44 -0400 Subject: [PATCH 3/3] Update SciMLTutorials.jl --- src/SciMLTutorials.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SciMLTutorials.jl b/src/SciMLTutorials.jl index 0b9f40ca..5de12185 100644 --- a/src/SciMLTutorials.jl +++ b/src/SciMLTutorials.jl @@ -13,7 +13,7 @@ function weave_file(folder,file,build_list=default_builds) if isfile(joinpath(repo_directory, "tutorials", folder, "Project.toml")) @info("Instantiating", folder) - Pkg.activate(folder) + Pkg.activate(joinpath(repo_directory,"tutorials", folder)) Pkg.instantiate() Pkg.build()