Skip to content

Commit 23f73a3

Browse files
Merge pull request #86 from matbesancon/project-toml
added project toml
2 parents d6b2d14 + 6c54003 commit 23f73a3

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.jl.cov
22
*.jl.mem
33
*.svg
4+
Manifest.toml

.travis.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ matrix:
1414
notifications:
1515
email: false
1616
# uncomment the following lines to override the default test script
17-
script:
18-
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
19-
- julia -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("GraphPlot"); Pkg.test("GraphPlot"; coverage=true)'
17+
2018
after_success:
2119
# push coverage results to Codecov
2220
- julia -e 'using Pkg; cd(Pkg.dir("GraphPlot")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

Project.toml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name = "GraphPlot"
2+
uuid = "a2cc645c-3eea-5389-862e-a155d0052231"
3+
authors = ["JuliaGraphs"]
4+
version = "0.4.0"
5+
6+
[deps]
7+
ArnoldiMethod = "ec485272-7323-5ecc-a04f-4719b315124d"
8+
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
9+
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
10+
Compose = "a81c6b42-2e10-5240-aca2-a61377ecd94b"
11+
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
12+
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
13+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
14+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
15+
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
16+
17+
[extras]
18+
Cairo = "159f3aea-2a34-519c-b102-8c37f9878175"
19+
ImageMagick = "6218d12a-5da1-5696-b52f-db25d2ecc6d1"
20+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
21+
VisualRegressionTests = "34922c18-7c2a-561c-bac1-01e79b2c4c92"
22+
23+
[targets]
24+
test = ["Test", "Cairo", "ImageMagick", "VisualRegressionTests"]
25+
26+
[compat]
27+
"Compose" = "0.7"
28+
"LightGraphs" = "1.1"
29+
"VisualRegressionTests" = "0.2"

0 commit comments

Comments
 (0)