Skip to content

Commit 41c9fae

Browse files
authored
Merge pull request #28 from JuliaGraphs/sbromberger/project.toml
Sbromberger/project.toml
2 parents 5e6207f + 2830866 commit 41c9fae

File tree

3 files changed

+40
-14
lines changed

3 files changed

+40
-14
lines changed

.travis.yml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,28 @@ os:
55
# - osx
66

77
julia:
8-
- 0.7
98
- 1.0
109
- nightly
1110

12-
matrix:
11+
notifications:
12+
email: false
13+
14+
jobs:
1315
allow_failures:
1416
- julia: nightly
17+
# include:
18+
# - stage: "Documentation"
19+
# julia: 1.3
20+
# os: linux
21+
# script:
22+
# - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
23+
# - julia --project=docs/ docs/make.jl
24+
# name: "HTML"
25+
# after_success: skip
1526

16-
notifications:
17-
email: false
1827

1928
# uncomment the following lines to override the default test script
20-
script:
21-
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
22-
- julia -e 'using Pkg, InteractiveUtils; versioninfo(); Pkg.clone(pwd()); Pkg.build("GraphIO"); Pkg.test("GraphIO"; coverage=true)'
29+
script: julia -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
2330

2431
after_success:
25-
- julia -e 'using Pkg; cd(Pkg.dir("GraphIO")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
26-
- julia -e 'using Pkg; Pkg.add("Documenter")'
27-
- julia -e 'using Pkg; cd(Pkg.dir("GraphIO")); include(joinpath("docs", "make.jl"))'
32+
- julia -e 'using Pkg; import GraphIO; cd(joinpath(dirname(pathof(GraphIO)), "..")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'

Project.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name = "GraphIO"
2+
uuid = "aa1b3936-2fda-51b9-ab35-c553d3a640a2"
3+
version = "0.5.0"
4+
5+
[deps]
6+
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
7+
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
8+
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
9+
SimpleTraits = "699a6c99-e7fa-54fc-8d76-47d257e15c1d"
10+
11+
[compat]
12+
EzXML = "1"
13+
LightGraphs = "1"
14+
ParserCombinator = "2"
15+
julia = "1"
16+
17+
[extras]
18+
CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193"
19+
EzXML = "8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615"
20+
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
21+
ParserCombinator = "fae87a5f-d1ad-5cf0-8f61-c941e1580b46"
22+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
23+
24+
[targets]
25+
test = ["CodecZlib", "LightGraphs", "EzXML", "ParserCombinator", "Test"]

REQUIRE

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

0 commit comments

Comments
 (0)