Skip to content

Commit a8e1346

Browse files
committed
2 parents 432c945 + 1357e4e commit a8e1346

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/docs.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ jobs:
3535
pip install setuptools --upgrade
3636
pip install .[test,docs]
3737
38+
- name: Set up Julia
39+
uses: julia-actions/setup-julia@v1
40+
with:
41+
version: '1.11'
42+
43+
- name: Install Julia kernel for Jupyter
44+
run: |
45+
julia -e 'using Pkg; Pkg.add("IJulia"); using IJulia; IJulia.installkernel("Julia 1.11")'
46+
3847
- name: Make docs
3948
run: |
4049
cd docs

docs/tutorials/julia/Julia_tutorial.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -629,8 +629,8 @@
629629
"source": [
630630
"# I don't recommend doing this on Google colab\n",
631631
"\n",
632-
"#using Pkg\n",
633-
"#Pkg.add(\"PythonPlot\")\n",
632+
"using Pkg\n",
633+
"Pkg.add(\"PythonPlot\")\n",
634634
"using PythonPlot"
635635
]
636636
},

0 commit comments

Comments
 (0)