Skip to content

Commit

Permalink
makeshift versioning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
0815Creeper committed Aug 29, 2024
1 parent 462a9bd commit 3089756
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/Example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,8 @@ jobs:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}

- name: "Install dependencies"
run: julia --project=examples/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'

- name: "update dependencies"
run: julia --project=examples/ -e 'using Pkg; Pkg.update()'

- name: "print debug dependencies"
run: julia --project=examples/ -e 'using Pkg; Pkg.status(mode = PKGMODE_MANIFEST)'
- name: "Install dependencies" # remove Pkg.add(name="BoundaryValueDiffEq", version="5.6") as soon as no longer required!
run: julia --project=examples/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.add(name="BoundaryValueDiffEq", version="5.6"); Pkg.instantiate(); Pkg.update()'

- name: "Install packages"
run: pip install jupyter nbconvert
Expand Down

0 comments on commit 3089756

Please sign in to comment.