Skip to content

Commit 28a5e02

Browse files
Merge pull request #448 from SciML/ChrisRackauckas-patch-1
Test master, again
2 parents cbe5048 + 61e3048 commit 28a5e02

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/SciMLTutorials.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@ function weave_file(folder,file,build_list=default_builds)
1313

1414
if isfile(joinpath(repo_directory, "tutorials", folder, "Project.toml"))
1515
@info("Instantiating", folder)
16-
Pkg.activate(folder)
16+
Pkg.activate(joinpath(repo_directory,"tutorials", folder))
1717
Pkg.instantiate()
1818
Pkg.build()
19+
20+
@info("Printing out `Pkg.status()`")
21+
Pkg.status()
1922
end
2023

2124
args = Dict{Symbol,String}(:folder=>folder,:file=>file)

tutorials/introduction/01-ode_introduction.jmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: An Intro to DifferentialEquations.jl
33
author: Chris Rackauckas
44
---
55

6+
67
## Basic Introduction Via Ordinary Differential Equations
78

89
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.

0 commit comments

Comments
 (0)