Skip to content

Commit 47f7774

Browse files
authored
Julia 1.10 (#152)
* Julia 1.10 * pkg * pkg * update registry * fix * pkg * fix
1 parent a6ac953 commit 47f7774

17 files changed

+542
-1119
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,10 @@ jobs:
6767
${{ runner.os }}-julia-${{ steps.julia-version.outputs.value }}
6868
- name: Install Julia packages
6969
if: ${{ steps.cache-nb.outputs.cache-hit != 'true' && (runner.environment == 'self-hosted' || steps.cache-julia.outputs.cache-hit != 'true') }}
70-
shell: julia --color=yes {0}
70+
shell: julia --color=yes --project=@. {0}
7171
run: |
7272
using Pkg, Dates
73-
Pkg.add(["JSON", "Literate", "MarkdownTables", "SHA", "Tables"])
74-
Pkg.activate(".")
73+
Pkg.Registry.update()
7574
Pkg.instantiate()
7675
Pkg.resolve()
7776
Pkg.precompile()

.github/workflows/update-manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Julia
3030
uses: julia-actions/setup-julia@v2
3131
with:
32-
version: '1'
32+
version: '1.10'
3333
arch: ${{ runner.arch }}
3434
- name: Update Julia dependencies
3535
env:

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"julia.executablePath": "julia +release"
2+
"julia.executablePath": "julia +lts"
33
}

0 commit comments

Comments
 (0)