From bd2c3885d3ce93132d0166d7a39c5ccff4193b3e Mon Sep 17 00:00:00 2001 From: Datseris Date: Tue, 20 Aug 2024 12:07:29 +0100 Subject: [PATCH] add package versions in tutorial --- Project.toml | 2 +- docs/src/tutorial.jl | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 6ff9da7c..5718c45f 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "DynamicalSystems" uuid = "61744808-ddfa-5f27-97ff-6e42cc95d634" repo = "https://github.com/JuliaDynamics/DynamicalSystems.jl.git" -version = "3.3.18" +version = "3.3.19" [deps] Attractors = "f3fd9213-ca85-4dba-9dfd-7fc91308fec7" diff --git a/docs/src/tutorial.jl b/docs/src/tutorial.jl index 9978f7b5..57bcc0b9 100644 --- a/docs/src/tutorial.jl +++ b/docs/src/tutorial.jl @@ -1,5 +1,7 @@ # # [Overarching tutorial for DynamicalSystems.jl](@id tutorial) +#nb @doc DynamicalSystems + # This page serves as a short but to-the-point introduction to the **DynamicalSystems.jl** library. It outlines the core components, and how they establish an interface that is used by the rest of the library. It also provides a couple of usage examples to connect the various packages of the library together. # Going through this tutorial should take you about 20 minutes. @@ -17,6 +19,16 @@ # ``` # in your Julia session. +# ### Package versions used + +import Pkg + +#nb # Activate an environment in the folder containing the notebook +#nb Pkg.activate(dirname(@__DIR__)) +#nb Pkg.add(["DynamicalSystems", "CairoMakie", "GLMakie", "OrdinaryDiffEq", "BenchmarkTools"]) + +Pkg.status(["DynamicalSystems", "CairoMakie", "GLMakie", "OrdinaryDiffEq", "BenchmarkTools"]; mode = Pkg.PKGMODE_MANIFEST) + # ## Core components # The individual packages that compose `DynamicalSystems` interact flawlessly with each other because of the following two components: