Skip to content

Commit 47aca9a

Browse files
committed
Update Project and CIs to Julia 1.4
1 parent 3c0ac0e commit 47aca9a

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.appveyor.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
environment:
22
matrix:
3-
- julia_version: 1
4-
- julia_version: 1.1
5-
- julia_version: 1.2
63
- julia_version: 1.3
4+
- julia_version: 1.4
75
- julia_version: nightly
86

97
platform:

.cirrus.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@ task:
44
name: FreeBSD
55
env:
66
matrix:
7-
- JULIA_VERSION: 1.0
8-
- JULIA_VERSION: 1.1
9-
- JULIA_VERSION: 1.2
107
- JULIA_VERSION: 1.3
8+
- JULIA_VERSION: 1.4
119
- JULIA_VERSION: nightly
1210
install_script:
1311
- sh -c "$(fetch https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh -o -)"

.travis.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@ os:
66
- windows
77

88
julia:
9-
- 1.0
10-
- 1.1
11-
- 1.2
129
- 1.3
10+
- 1.4
1311
- nightly
1412

1513
matrix:
@@ -28,5 +26,6 @@ branches:
2826
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/ # tags
2927

3028
after_success:
31-
- julia -e 'using Pkg; cd(Pkg.dir("QuadraticModels")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
32-
- julia -e 'using Pkg; cd(Pkg.dir("QuadraticModels")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
29+
- julia -e 'if Sys.islinux() && string(VERSION)[1:3] == "1.4"
30+
using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())
31+
end'

Project.toml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,26 @@
1-
authors = ["Dominique Orban <[email protected]>"]
21
name = "QuadraticModels"
32
uuid = "f468eda6-eac5-11e8-05a5-ff9e497bcd19"
3+
authors = ["Dominique Orban <[email protected]>"]
44
version = "0.1.0"
55

66
[deps]
77
FastClosures = "9aa1b823-49e4-5ca5-8b0f-3971ec8bab6a"
88
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
99
LinearOperators = "5c8ed15e-5a4c-59e4-a42b-c7e8811fb125"
1010
NLPModels = "a4795742-8479-5a88-8948-cc11e1c8c1a6"
11-
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
1211
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
1312
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
14-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1513

1614
[compat]
1715
FastClosures = "0.2.1, 0.3.0"
1816
LinearOperators = "0.7.0, 1"
19-
NLPModels = "0.10.0, 1"
17+
NLPModels = "0.12"
2018
Requires = "0.3, 0.4, 0.5"
2119
julia = "^1.0.0"
20+
21+
[extras]
22+
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
23+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
24+
25+
[targets]
26+
test = ["Printf","Test"]

0 commit comments

Comments
 (0)