File tree 3 files changed +3
-21
lines changed
3 files changed +3
-21
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ jobs:
15
15
strategy :
16
16
fail-fast : false
17
17
matrix :
18
- version : ['1.6 ', '1'] # Test against LTS and current minor release
18
+ version : ['1.10 ', '1'] # Test against LTS and current minor release
19
19
os : [ubuntu-latest, macOS-latest, windows-latest]
20
20
arch : [x64]
21
21
include :
22
22
# Also test against 32-bit Linux on LTS.
23
- - version : ' 1.6 '
23
+ - version : ' 1.10 '
24
24
os : ubuntu-latest
25
25
arch : x86
26
26
# Test against Apple M-series
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ version = "2.0.2"
5
5
6
6
[deps ]
7
7
MathOptInterface = " b8f27783-ece8-5eb3-8dc8-9495eed66fee"
8
- Requires = " ae029012-a4dd-5104-9daa-d747884805df"
9
8
SCS_jll = " f4f2fc5b-1d94-523c-97ea-2ab488bedf4b"
10
9
SparseArrays = " 2f01184e-e22b-5df5-ae63-d93ebab69eaf"
11
10
@@ -20,13 +19,12 @@ SCS_MKL_jll = "3f2553a9-4106-52be-b7dd-865123654657"
20
19
[compat ]
21
20
MathOptInterface = " 1.20"
22
21
Pkg = " <0.0.1, ^1.6"
23
- Requires = " 1"
24
22
SCS_GPU_jll = " =3.2.4, =3.2.6, =3.2.7"
25
23
SCS_MKL_jll = " =3.2.4, =3.2.6, =3.2.7"
26
24
SCS_jll = " =3.2.4, =3.2.6, =3.2.7"
27
25
SparseArrays = " <0.0.1, ^1.6"
28
26
Test = " <0.0.1, ^1.6"
29
- julia = " 1.6 "
27
+ julia = " 1.10 "
30
28
31
29
[extras ]
32
30
Pkg = " 44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Original file line number Diff line number Diff line change 6
6
module SCS
7
7
8
8
import MathOptInterface as MOI
9
- import Requires # Remove when Julia 1.9 is the LTS
10
9
import SCS_jll
11
10
import SparseArrays
12
11
@@ -25,21 +24,6 @@ struct GpuIndirectSolver <: LinearSolver end
25
24
# Code is contained in /ext/SCSSCS_MKL_jllExt
26
25
struct MKLDirectSolver <: LinearSolver end
27
26
28
- function __init__ ()
29
- # Remove when Julia 1.9 is the LTS
30
- @static if ! isdefined (Base, :get_extension )
31
- Requires. @require (
32
- SCS_GPU_jll = " af6e375f-46ec-5fa0-b791-491b0dfa44a4" ,
33
- include (" ../ext/SCSSCS_GPU_jllExt.jl" ),
34
- )
35
- Requires. @require (
36
- SCS_MKL_jll = " 3f2553a9-4106-52be-b7dd-865123654657" ,
37
- include (" ../ext/SCSSCS_MKL_jllExt.jl" ),
38
- )
39
- end
40
- return
41
- end
42
-
43
27
export scs_solve
44
28
45
29
end
You can’t perform that action at this time.
0 commit comments