Skip to content

try to fix local version of julia #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@ jobs:

- name: Install Julia
uses: julia-actions/setup-julia@v2
with:
version: '1.10'
project: '.'
uses: julia-actions/julia-buildpkg@v1

- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@v2
Expand Down
2 changes: 2 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@ GeoDataFrames = "62cb38b5-d8d2-4862-a48e-6a340996859f"
GeoInterface = "cf35fbd7-0cd7-5166-be24-54bfbe79505f"
GeoMakie = "db073c08-6b98-4ee5-b6a4-5efafb3259c6"
GeometryOps = "3251bfac-6a57-4b6d-aa61-ac1fef2975ab"
IJulia = "7073ff75-c697-5162-941a-fcdaad2a7d2a"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
RCall = "6f49c342-dc21-5d91-9882-a32aef131414"
24 changes: 23 additions & 1 deletion demo.qmd
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
---
# jupyter: julia-1.10
engine: julia
---

```{julia}
# import RCall
import Pkg
Pkg.add("GeoDataFrames")
Pkg.add("Plots")

# Install from toml file:
Pkg.instantiate()
import Pkg
Pkg.add("RCall")
using RCall
using Pkg
Pkg.add("IJulia")
using IJulia
# notebook()
```



::: {.panel-tabset group="language"}

Expand All @@ -23,7 +46,6 @@ world.plot()
## Julia

```{julia}
import Pkg; Pkg.add("GeoDataFrames")
using GeoDataFrames
world = GeoDataFrames.read("world.gpkg")
```
Expand Down