From 3726f667ab07844ed2b003075ec48bcf7ed0a0a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20Besan=C3=A7on?= Date: Mon, 22 Apr 2019 15:36:45 +0200 Subject: [PATCH 1/5] added project toml --- .gitignore | 1 + Project.toml | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 Project.toml diff --git a/.gitignore b/.gitignore index fa8c3db..ccb1692 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.jl.cov *.jl.mem *.svg +Manifest.toml diff --git a/Project.toml b/Project.toml new file mode 100644 index 0000000..123c585 --- /dev/null +++ b/Project.toml @@ -0,0 +1,21 @@ +name = "GraphPlot" +uuid = "a2cc645c-3eea-5389-862e-a155d0052231" +authors = ["JuliaGraphs"] +version = "0.4.0" + +[deps] +ArnoldiMethod = "ec485272-7323-5ecc-a04f-4719b315124d" +ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f" +Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" +Compose = "a81c6b42-2e10-5240-aca2-a61377ecd94b" +DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab" +LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d" + +[extras] +Cairo = "159f3aea-2a34-519c-b102-8c37f9878175" +ImageMagick = "6218d12a-5da1-5696-b52f-db25d2ecc6d1" +Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" +VisualRegressionTests = "34922c18-7c2a-561c-bac1-01e79b2c4c92" + +[targets] +test = ["Test", "Cairo", "ImageMagick", "VisualRegressionTests"] From 6f42005a053edebb161e896a9c033d250358c1c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20Besan=C3=A7on?= Date: Mon, 22 Apr 2019 16:26:45 +0200 Subject: [PATCH 2/5] fix travis --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 18001f3..4a139b8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,7 @@ notifications: # uncomment the following lines to override the default test script script: - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - - julia -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("GraphPlot"); Pkg.test("GraphPlot"; coverage=true)' + - julia -e 'using Pkg; Pkg.add("GraphPlot"); Pkg.test("GraphPlot"; coverage=true)' after_success: # push coverage results to Codecov - julia -e 'using Pkg; cd(Pkg.dir("GraphPlot")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' From b8989bc8ef6eefd76047881860d9a90b7fe8e562 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20Besan=C3=A7on?= Date: Mon, 22 Apr 2019 16:34:41 +0200 Subject: [PATCH 3/5] fix travis again --- .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4a139b8..30614ce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,9 +14,7 @@ matrix: notifications: email: false # uncomment the following lines to override the default test script -script: - - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - - julia -e 'using Pkg; Pkg.add("GraphPlot"); Pkg.test("GraphPlot"; coverage=true)' + after_success: # push coverage results to Codecov - julia -e 'using Pkg; cd(Pkg.dir("GraphPlot")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' From 5f020c7b9582c43f18d03b7d4e8d88958e5631d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20Besan=C3=A7on?= Date: Mon, 22 Apr 2019 16:41:37 +0200 Subject: [PATCH 4/5] add stdlib packages --- Project.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Project.toml b/Project.toml index 123c585..7a7d133 100644 --- a/Project.toml +++ b/Project.toml @@ -10,6 +10,9 @@ Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" Compose = "a81c6b42-2e10-5240-aca2-a61377ecd94b" DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab" LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d" +LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" +Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" +SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" [extras] Cairo = "159f3aea-2a34-519c-b102-8c37f9878175" From 6c5400339506edff803b8248c29379cd7aca6da4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20Besan=C3=A7on?= Date: Mon, 22 Apr 2019 16:54:00 +0200 Subject: [PATCH 5/5] compat --- Project.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Project.toml b/Project.toml index 7a7d133..f199533 100644 --- a/Project.toml +++ b/Project.toml @@ -22,3 +22,8 @@ VisualRegressionTests = "34922c18-7c2a-561c-bac1-01e79b2c4c92" [targets] test = ["Test", "Cairo", "ImageMagick", "VisualRegressionTests"] + +[compat] +"Compose" = "0.7" +"LightGraphs" = "1.1" +"VisualRegressionTests" = "0.2"