Skip to content

Commit

Permalink
add package versions in tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
Datseris committed Aug 20, 2024
1 parent f7a23b1 commit bd2c388
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
12 changes: 12 additions & 0 deletions docs/src/tutorial.jl
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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:
Expand Down

0 comments on commit bd2c388

Please sign in to comment.