Skip to content

Commit 021643c

Browse files
pinned tests to v1.11
1 parent 8165bb8 commit 021643c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
labels: cuda
1818
strategy:
1919
matrix:
20-
julia-version: ['1']
20+
julia-version: ['1.11']
2121
steps:
2222
- name: Checkout repository
2323
uses: actions/checkout@v4

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
labels: cuda
1414
strategy:
1515
matrix:
16-
julia-version: ['1']
16+
julia-version: ['1.11']
1717
steps:
1818
- uses: actions/checkout@v4
1919
- uses: julia-actions/install-juliaup@v2

docs/src/opf_demo.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ model
2424
result = madnlp(model; tol=1e-6)
2525

2626
# Once a solution has been generated, the values of any of the variables in the model can be unpacked using the vars NamedTuple.
27-
Array(solution(result, vars.vm))[1:10]
27+
solution(result, vars.vm)[1:10]
2828

2929
# Result also stores the objective value.
3030
result.objective

docs/src/opf_demo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ result = madnlp(model; tol=1e-6)
6767
Once a solution has been generated, the values of any of the variables in the model can be unpacked using the vars NamedTuple.
6868

6969
````julia
70-
Array(solution(result, vars.vm))[1:10]
70+
solution(result, vars.vm)[1:10]
7171
````
7272

7373
````

0 commit comments

Comments
 (0)