Skip to content

Commit 7266650

Browse files
staticfloatandreasnoack
authored andcommitted
Upgrade to Julia 1.3, use Arpack_jll
1 parent 0e738a1 commit 7266650

File tree

6 files changed

+8
-104
lines changed

6 files changed

+8
-104
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ os:
44
- linux
55
- osx
66
julia:
7-
- 0.7
8-
- 1.0
7+
- 1.3
98
- nightly
109
notifications:
1110
email: false

Project.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name = "Arpack"
22
uuid = "7d9fca2a-8960-54d3-9f78-7d1dccf2cb97"
3-
version = "0.3.2"
3+
version = "0.4.0"
44

55
[deps]
6-
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
6+
Arpack_jll = "68821587-b530-5797-8361-c406ea357684"
77
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
88
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
99

1010
[compat]
11-
BinaryProvider = "0.5"
12-
julia = "0.7, 1"
11+
Arpack_jll = "~3.5"
12+
julia = "1.3"
1313

1414
[extras]
1515
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
@@ -18,4 +18,3 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1818

1919
[targets]
2020
test = ["Random", "SparseArrays", "Test"]
21-

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
environment:
22
matrix:
3-
- julia_version: 0.7
3+
- julia_version: 1.3
44
- julia_version: latest
55

66
platform:

deps/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

deps/build.jl

Lines changed: 0 additions & 74 deletions
This file was deleted.

src/Arpack.jl

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,11 @@
11
# This file is a part of Julia. License is MIT: https://julialang.org/license
2-
3-
__precompile__(true)
4-
52
"""
63
Arnoldi and Lanczos iteration for computing eigenvalues
74
"""
85
module Arpack
96

10-
# To make Pkg aware that this dependency
11-
# will be injected by BinaryProvider.
12-
using Libdl
13-
14-
const depsfile = joinpath(@__DIR__, "..", "deps", "deps.jl")
15-
16-
if isfile(depsfile)
17-
include(depsfile)
18-
else
19-
throw(ErrorException("""
20-
No deps.jl file could be found. Please try running Pkg.build("Arpack").
21-
Currently, the build command might fail when Julia has been built from source
22-
and the recommendation is to use the official binaries from julialang.org.
23-
For more info see https://github.com/JuliaLinearAlgebra/Arpack.jl/issues/5.
24-
"""))
25-
end
7+
# Load in our binary dependencies
8+
using Arpack_jll
269

2710
using LinearAlgebra: BlasFloat, BlasInt, Diagonal, I, SVD, UniformScaling,
2811
checksquare, factorize, ishermitian, issymmetric, mul!,

0 commit comments

Comments
 (0)