Skip to content

Commit 369d777

Browse files
authored
Add Project.toml file (#237)
* add project.toml file * drop support for julia v0.6, update CI
1 parent 4f49b25 commit 369d777

File tree

4 files changed

+22
-11
lines changed

4 files changed

+22
-11
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
Manifest.toml
2+
13
docs/build/
24
docs/site/

.travis.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,10 @@ os:
33
- linux
44
- osx
55
julia:
6-
- 0.6
7-
- 0.7
86
- 1.0
7+
- 1.3
98
notifications:
109
email: false
11-
sudo: false
12-
addons:
13-
apt_packages:
14-
- gfortran
15-
- liblapack-dev
16-
- libgmp-dev
17-
- libglpk-dev
1810
after_success:
1911
- julia -e 'Pkg.add("Documenter")'
2012
- julia -e 'cd(Pkg.dir("MathProgBase")); include(joinpath("docs", "make.jl"))'

Project.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name = "MathProgBase"
2+
uuid = "fdba3010-5040-5b88-9595-932c9decdf73"
3+
repo = "https://github.com/JuliaOpt/MathProgBase.jl.git"
4+
version = "0.7.8"
5+
6+
[deps]
7+
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
8+
9+
[compat]
10+
Compat = "~0, ~1, ~2"
11+
julia = "1"
12+
13+
[extras]
14+
ECOS = "e2685f51-7e38-5353-a97d-a921fd2c8199"
15+
GLPKMathProgInterface = "3c7084bd-78ad-589a-b5bb-dbd673274bea"
16+
Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9"
17+
18+
[targets]
19+
test = ["GLPKMathProgInterface", "ECOS", "Ipopt"]

REQUIRE

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

0 commit comments

Comments
 (0)