From d27cef7f873e608dc8c8efe37bf8fc05c606d005 Mon Sep 17 00:00:00 2001 From: mforets Date: Wed, 1 May 2019 14:08:57 +1000 Subject: [PATCH 1/2] add Project.toml and remove REQUIRE --- Project.toml | 43 +++++++++++++++++++++++++++++++++++++++++++ REQUIRE | 7 ------- 2 files changed, 43 insertions(+), 7 deletions(-) create mode 100644 Project.toml delete mode 100644 REQUIRE diff --git a/Project.toml b/Project.toml new file mode 100644 index 0000000000..1fca429f1f --- /dev/null +++ b/Project.toml @@ -0,0 +1,43 @@ +name = "LazySets" +uuid = "b4f0291d-fe17-52bc-9479-3d1a343d9043" + +[deps] +Compat = "34da2185-b29b-5c13-b0c7-acf172513d20" +Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b" +GLPKMathProgInterface = "3c7084bd-78ad-589a-b5bb-dbd673274bea" +IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253" +LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" +MathProgBase = "fdba3010-5040-5b88-9595-932c9decdf73" +Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" +Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" +RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01" +Requires = "ae029012-a4dd-5104-9daa-d747884805df" +SharedArrays = "1a1011a3-84de-559e-8e89-a11a2f7dc383" +SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" + +[compat] +Compat = "≥ 1.0.0" +Expokit = "≥ 0.1.0" +GLPKMathProgInterface = "≥ 0.4.0" +IntervalArithmetic = "≥ 0.14.0" +MathProgBase = "≥ 0.7.0" +Optim = "≥ 0.14.1" +Polyhedra = "≥ 0.3.4" +RecipesBase = "≥ 0.3.0" +Requires = "≥ 0.4.0" +julia = "≥ 0.6.0" + +[extras] +Compat = "34da2185-b29b-5c13-b0c7-acf172513d20" +Expokit = "a1e7a1ef-7a5d-5822-a38c-be74e1bb89f4" +GLPKMathProgInterface = "3c7084bd-78ad-589a-b5bb-dbd673274bea" +IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253" +MathProgBase = "fdba3010-5040-5b88-9595-932c9decdf73" +Optim = "429524aa-4258-5aef-a3af-852621145aeb" +Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" +Polyhedra = "67491407-f73d-577b-9b50-8179a7c68029" +RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01" +Requires = "ae029012-a4dd-5104-9daa-d747884805df" + +[targets] +test = ["Expokit", "Pkg", "IntervalArithmetic", "GLPKMathProgInterface", "Compat", "RecipesBase", "MathProgBase", "Requires", "Optim", "Polyhedra"] diff --git a/REQUIRE b/REQUIRE deleted file mode 100644 index 00dbc60616..0000000000 --- a/REQUIRE +++ /dev/null @@ -1,7 +0,0 @@ -julia 0.6 -Compat 1.0 -GLPKMathProgInterface 0.4 -IntervalArithmetic 0.14 -MathProgBase 0.7 -RecipesBase 0.3 -Requires 0.4 From 811eee292b0ecf241df75ff053fded685cf3d285 Mon Sep 17 00:00:00 2001 From: mforets Date: Wed, 1 May 2019 14:10:41 +1000 Subject: [PATCH 2/2] cleanup travis script --- .travis.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.travis.yml b/.travis.yml index 573c12d2c5..e80b199c0b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,31 +3,13 @@ language: julia os: - linux julia: - - 0.6 - - 0.7 - 1.0 - 1.1 - #- nightly notifications: email: false git: depth: 99999999 -## allow failures (tests will run but not make your overall status red) -#matrix: - #allow_failures: - #- julia: nightly - -## uncomment and modify the following lines to manually install system packages -# apt: # apt-get for linux -# packages: -# - gfortran -#before_script: # homebrew for mac -# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi - -## uncomment the following lines to override the default test script -#script: -# - julia -e 'Pkg.clone(pwd()); Pkg.build("LazySets"); Pkg.test("LazySets"; coverage=true)' after_success: # documentation (restrict Documenter to release version 0.19.7 (breaking release) for now) - julia -e 'VERSION >= v"0.7-" && using Pkg;