Skip to content

Commit 5ed44a8

Browse files
authored
Package Version and Travis Maintenance (#30)
* update travis to julia v1.3 * update deps versions * remove manifest from repo
1 parent 2e90556 commit 5ed44a8

File tree

6 files changed

+16
-229
lines changed

6 files changed

+16
-229
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
.DS_Store
22

3+
Manifest.toml
4+
35
*.jl.cov
46
*.jl.*.cov
57
*.jl.mem
68
deps/deps.jl
9+

.travis.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,15 @@ os:
44
- osx
55
julia:
66
- 1.0
7-
- 1.1
8-
- 1.2
9-
matrix:
7+
- 1.3
8+
- nightly
9+
codecov: true
10+
jobs:
1011
allow_failures:
1112
- julia: nightly
12-
addons:
13-
apt_packages:
14-
- gfortran
15-
after_success:
16-
- julia -e 'using Pkg; Pkg.add("Coverage"); cd(Pkg.dir("GraphicalModelLearning")); using Coverage; Codecov.submit(process_folder())'
17-
jobs:
1813
include:
1914
- stage: "Documentation"
20-
julia: 1.1
15+
julia: 1.3
2116
os: linux
2217
script:
2318
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); Pkg.develop(PackageSpec(path=pwd()))'

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ GraphicalModelLearning.jl Change Log
44
### Staged
55
- nothing
66

7+
### v0.2.1
8+
- Maintenance updates, Julia v1.3, JuMP v0.21, Ipopt v0.6
9+
710
### v0.2.0
811
- Migrate to JuMP 0.19
912

Manifest.toml

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

Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "GraphicalModelLearning"
22
uuid = "73787735-dbe8-5e05-9488-dc58b1b075d0"
33
authors = ["Marc Vuffray, Carleton Coffrin"]
44
repo = "https://github.com/lanl-ansi/GraphicalModelLearning.jl.git"
5-
version = "0.2.0"
5+
version = "0.2.1"
66

77
[deps]
88
Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9"
@@ -12,9 +12,9 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1212
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1313

1414
[compat]
15-
Ipopt = "~0.4, ~0.5"
16-
JuMP = "~0.19"
17-
StatsBase = "~0.25, ~0.26, ~0.27, ~0.28, ~0.29, ~0.30"
15+
Ipopt = "~0.4, ~0.5, ~0.6"
16+
JuMP = "~0.19, ~0.20, ~0.21"
17+
StatsBase = "~0.25, ~0.26, ~0.27, ~0.28, ~0.29, ~0.30, ~0.31, ~0.32"
1818
julia = "^1"
1919

2020
[extras]

src/GraphicalModelLearning.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ RPLE() = RPLE(0.2, true)
5959
abstract type GMLMethod end
6060

6161
mutable struct NLP <: GMLMethod
62-
solver::JuMP.OptimizerFactory
62+
solver::Any
6363
end
6464
# default values
6565
NLP() = NLP(with_optimizer(Ipopt.Optimizer, print_level=0))

0 commit comments

Comments
 (0)