From 7c5163a6715a89ed5b862d23f402b420ef4ffcf5 Mon Sep 17 00:00:00 2001 From: Michel Villanueva Date: Fri, 12 Jul 2024 18:42:42 -0400 Subject: [PATCH 1/4] Fix how to add julia releases with juliaup --- julia-intro/docs/julia-intro-installation.ipynb | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/julia-intro/docs/julia-intro-installation.ipynb b/julia-intro/docs/julia-intro-installation.ipynb index c55f060..7729410 100644 --- a/julia-intro/docs/julia-intro-installation.ipynb +++ b/julia-intro/docs/julia-intro-installation.ipynb @@ -138,15 +138,21 @@ "\n", "to show all the versions of Julia available.\n", "\n", - "We will work with the newest version on all platforms, 1.9.3 so simply type\n", + "We will work with the newest version on all platforms, 1.10.4 so simply type\n", "\n", "```bash\n", - "juliaup install 1.9.3\n", + "juliaup add 1.10.4\n", "```\n", "\n", "to set that up.\n", "\n", - "The big bonus with `juliaup` is that you can easily have multiple Julia releases installed at once, and Juliaup will let you configure which is your default at any point in time.\n" + "The big bonus with `juliaup` is that you can easily have multiple Julia releases installed at once, and Juliaup will let you configure which is your default at any point in time.\n", + "\n", + "Keep juliaup updated with\n", + "\n", + "```bash\n", + "juliaup self update\n", + "```\n" ] }, { From 6b28a08bdcbc52a4a919325f6df308c1a662dd18 Mon Sep 17 00:00:00 2001 From: "Michel H. Villanueva" Date: Fri, 12 Jul 2024 19:18:49 -0400 Subject: [PATCH 2/4] Apply suggestions from code review Co-authored-by: Jerry Ling --- julia-intro/docs/julia-intro-installation.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/julia-intro/docs/julia-intro-installation.ipynb b/julia-intro/docs/julia-intro-installation.ipynb index 7729410..439b9d3 100644 --- a/julia-intro/docs/julia-intro-installation.ipynb +++ b/julia-intro/docs/julia-intro-installation.ipynb @@ -138,10 +138,10 @@ "\n", "to show all the versions of Julia available.\n", "\n", - "We will work with the newest version on all platforms, 1.10.4 so simply type\n", + "We will work with the latest `release` version on all platforms (1.10.4 as of writing) so simply type\n", "\n", "```bash\n", - "juliaup add 1.10.4\n", + "juliaup add release\n", "```\n", "\n", "to set that up.\n", From 3649f76e9a00fb70e3afbfcfd6d3973104a8ed00 Mon Sep 17 00:00:00 2001 From: Moelf Date: Sat, 13 Jul 2024 01:23:40 +0200 Subject: [PATCH 3/4] fix Julia version in CI --- .github/workflows/jupyterbook.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/jupyterbook.yml b/.github/workflows/jupyterbook.yml index e33c493..0037cfc 100644 --- a/.github/workflows/jupyterbook.yml +++ b/.github/workflows/jupyterbook.yml @@ -28,6 +28,8 @@ jobs: - name: Set up Julia uses: julia-actions/setup-julia@v1 + with: + version: '1.9' - uses: julia-actions/cache@v1 - uses: julia-actions/julia-buildpkg@v1 From 741eeae20fc8442bde2b8a9555a58d48e108b7ad Mon Sep 17 00:00:00 2001 From: Moelf Date: Sat, 13 Jul 2024 01:25:42 +0200 Subject: [PATCH 4/4] don't lie about latest rendering version --- julia-intro/docs/julia-intro-installation.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/julia-intro/docs/julia-intro-installation.ipynb b/julia-intro/docs/julia-intro-installation.ipynb index 439b9d3..098f3f0 100644 --- a/julia-intro/docs/julia-intro-installation.ipynb +++ b/julia-intro/docs/julia-intro-installation.ipynb @@ -138,7 +138,7 @@ "\n", "to show all the versions of Julia available.\n", "\n", - "We will work with the latest `release` version on all platforms (1.10.4 as of writing) so simply type\n", + "We will work with the latest `release` version on all platforms (1.9 as of writing) so simply type\n", "\n", "```bash\n", "juliaup add release\n",