Skip to content

Commit bb9553c

Browse files
authored
Merge pull request #231 from haampie/fix-upgrade-issues
Upgrades / maintenance
2 parents a4290b5 + fbde658 commit bb9553c

File tree

15 files changed

+78
-36
lines changed

15 files changed

+78
-36
lines changed

.codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
comment: off

.travis.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ language: julia
22
os:
33
- linux
44
julia:
5-
- 0.7
65
- 1.0
76
- nightly
87
matrix:
@@ -11,5 +10,15 @@ matrix:
1110
notifications:
1211
email: false
1312
after_success:
14-
- julia -e 'using Pkg; Pkg.add("Coverage"); cd(Pkg.dir("IterativeSolvers")); using Coverage; Coveralls.submit(process_folder());'
15-
- julia -e 'using Pkg; Pkg.add("Documenter"); cd(Pkg.dir("IterativeSolvers")); include(joinpath("docs", "make.jl"))'
13+
- julia --project=coverage/ -e 'using Pkg; Pkg.instantiate()'
14+
- julia --project=coverage/ coverage/coverage.jl
15+
16+
jobs:
17+
include:
18+
- stage: "Documentation"
19+
julia: 1.0
20+
os: linux
21+
script:
22+
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); Pkg.develop(PackageSpec(path=pwd()))'
23+
- julia --project=docs/ docs/make.jl
24+
after_success: skip

Manifest.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
3333

3434
[[RecipesBase]]
3535
deps = ["Random", "Test"]
36-
git-tree-sha1 = "b18c3d875ad6805e3db59c4e81f206f04df71d66"
36+
git-tree-sha1 = "0b3cb370ee4dc00f47f1193101600949f3dcf884"
3737
uuid = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
38-
version = "0.5.0"
38+
version = "0.6.0"
3939

4040
[[Serialization]]
4141
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"

Project.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name = "IterativeSolvers"
22
uuid = "42fd0dbc-a981-5370-80f2-aaf504508153"
3+
version = "0.8.0"
34

45
[deps]
56
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
@@ -8,11 +9,6 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
89
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
910
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1011

11-
[compat]
12-
LinearMaps = "2.0.0"
13-
RecipesBase = "< 0.6"
14-
julia = ">= 0.7"
15-
1612
[extras]
1713
LinearMaps = "7a12625a-238d-50fd-b39a-03d52299707e"
1814
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,8 @@
1313

1414
## Installing
1515

16-
To install the package, use the following command inside Julia's REPL:
16+
To install the package, open the package manager in the REPL via ] and run
17+
1718
```julia
18-
Pkg.add("IterativeSolvers")
19+
pkg> add IterativeSolvers
1920
```
20-
21-
## Status
22-
23-
- [Issue #1](https://github.com/JuliaMath/IterativeSolvers.jl/issues/1) documents the implementation roadmap for iterative solvers.
24-
25-
- The interfaces between the various algorithms are still in flux, but aim to be consistent.

REQUIRE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
julia 0.7-beta
1+
julia 1.0
22

3-
RecipesBase 0.3.1 0.6.0-
3+
RecipesBase 0.6.0

coverage/Project.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[deps]
2+
Coverage = "a2441757-f6aa-5fb2-8edb-039e3f45d037"

coverage/coverage.jl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
get(ENV, "TRAVIS_OS_NAME", "") == "linux" || exit()
2+
get(ENV, "TRAVIS_JULIA_VERSION", "") == "1.0" || exit()
3+
4+
using Coverage
5+
6+
cd(joinpath(dirname(@__FILE__), "..")) do
7+
Codecov.submit(Codecov.process_folder())
8+
end

docs/Project.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
4+
[compat]
5+
Documenter = "~0.20"

docs/make.jl

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,4 @@ makedocs(
3434
]
3535
)
3636

37-
deploydocs(
38-
repo = "github.com/JuliaMath/IterativeSolvers.jl.git",
39-
target = "build",
40-
osname = "linux",
41-
julia = "0.7",
42-
deps = nothing,
43-
make = nothing,
44-
)
37+
deploydocs(repo = "github.com/JuliaMath/IterativeSolvers.jl.git")

0 commit comments

Comments
 (0)