From 45c5d1a911a6b2a4f862adf35156658a5a91d5cc Mon Sep 17 00:00:00 2001 From: Justin Angevaare Date: Tue, 28 May 2019 16:44:58 -0400 Subject: [PATCH 1/2] generate project.toml --- Project.toml | 16 ++++++++++++++++ REQUIRE | 3 --- 2 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 Project.toml delete mode 100644 REQUIRE diff --git a/Project.toml b/Project.toml new file mode 100644 index 0000000..68fdcca --- /dev/null +++ b/Project.toml @@ -0,0 +1,16 @@ +name = "SubstitutionModels" +uuid = "8365b1bb-bd83-58ee-a267-f2965fc81c73" + +[deps] +BioSymbols = "3c28c6f8-a34d-59c4-9654-267d177fcfa9" +StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" + +[compat] +julia = "≥ 0.7.0" + +[extras] +LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" +Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" + +[targets] +test = ["LinearAlgebra", "Test"] diff --git a/REQUIRE b/REQUIRE deleted file mode 100644 index d346533..0000000 --- a/REQUIRE +++ /dev/null @@ -1,3 +0,0 @@ -julia 0.7 -BioSymbols -StaticArrays From 7e44cd8cb8b90e5a88804944c930d9aad5ca2029 Mon Sep 17 00:00:00 2001 From: Justin Angevaare Date: Tue, 28 May 2019 16:45:27 -0400 Subject: [PATCH 2/2] add julia 1.1 testing --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index ff14c1e..90712c1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ os: julia: - 0.7 - 1.0 + - 1.1 - nightly notifications: email: false