Skip to content

Commit 8c058d4

Browse files
authored
Convert to Project.toml (#71)
1 parent 8fb4550 commit 8c058d4

File tree

4 files changed

+89
-29
lines changed

4 files changed

+89
-29
lines changed

.travis.yml

Lines changed: 30 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,37 @@
11
language: julia
2+
23
os:
34
- linux
4-
notifications:
5-
email: false
5+
66
julia:
7-
- 1.0
87
- 1.1
8+
- 1.2
99
- nightly
10-
matrix:
11-
allow_failures:
12-
- julia: nightly
13-
before_install:
14-
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
15-
script:
16-
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
17-
- julia -e 'using Pkg;Pkg.clone(pwd()); Pkg.test("ECharts"; coverage=true)'
10+
11+
# # Uncomment the following lines to allow failures on nightly julia
12+
# # (tests will run but not make your overall status red)
13+
# matrix:
14+
# allow_failures:
15+
# - julia: nightly
16+
17+
notifications:
18+
email: false
19+
20+
#script: # the default script is equivalent to the following
21+
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
22+
# - julia --project -e 'using Pkg; Pkg.build(); Pkg.test(; coverage=true)';
23+
1824
after_success:
19-
# push coverage results to Coveralls
20-
#- julia -e 'cd(Pkg.dir("ECharts")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
21-
# push coverage results to Codecov
22-
- julia -e 'cd(Pkg.dir("ECharts")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
25+
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';
26+
# - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())';
27+
28+
# jobs:
29+
# include:
30+
# - stage: "Documentation"
31+
# julia: 1.0
32+
# os: linux
33+
# script:
34+
# - julia --project=docs/ -e 'using Pkg; Pkg.instantiate();
35+
# Pkg.develop(PackageSpec(path=pwd()))'
36+
# - julia --project=docs/ docs/make.jl
37+
# after_success: skip

Project.toml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name = "ECharts"
2+
uuid = "f9630f5b-a116-5b0c-bd6c-4699aee17694"
3+
4+
[deps]
5+
Blink = "ad839575-38b3-5650-b840-f874b8c74a25"
6+
ColorBrewer = "a2cac450-b92f-5266-8821-25eda20663c8"
7+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
8+
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
9+
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
10+
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
11+
JSExpr = "97c1335a-c9c5-57fe-bc5d-ec35cebe8660"
12+
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
13+
KernelDensity = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b"
14+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
15+
NoveltyColors = "8f4894fe-55b9-5d5d-ac02-aa6554b49763"
16+
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
17+
RDatasets = "ce6b1742-4840-55fa-b093-852dadbb1d8b"
18+
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
19+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
20+
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
21+
WebIO = "0f1e0344-ec1d-5b48-a673-e5cf874b6c29"
22+
23+
[compat]
24+
Blink = "≥ 0.10.0"
25+
CSV = "≥ 0.5.1"
26+
ColorBrewer = "≥ 0.4.0"
27+
DataFrames = "≥ 0.18.0"
28+
Distributions = "≥ 0.21.0"
29+
HTTP = "~0.7.0"
30+
JSExpr = "≥ 0.3.1"
31+
JSON = "≥ 0.19.0"
32+
KernelDensity = "≥ 0.5.0"
33+
NoveltyColors = "≥ 0.4.0"
34+
Parameters = "~0.11.0"
35+
RDatasets = "~0.6.2"
36+
StatsBase = "~0.31.0"
37+
WebIO = "≥ 0.3.2"
38+
julia = "≥ 1.1.0"
39+
40+
[extras]
41+
Blink = "ad839575-38b3-5650-b840-f874b8c74a25"
42+
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
43+
ColorBrewer = "a2cac450-b92f-5266-8821-25eda20663c8"
44+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
45+
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
46+
JSExpr = "97c1335a-c9c5-57fe-bc5d-ec35cebe8660"
47+
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
48+
KernelDensity = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b"
49+
NoveltyColors = "8f4894fe-55b9-5d5d-ac02-aa6554b49763"
50+
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
51+
RData = "df47a6cb-8c03-5eed-afd8-b6050d6c41da"
52+
RDatasets = "ce6b1742-4840-55fa-b093-852dadbb1d8b"
53+
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
54+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
55+
WebIO = "0f1e0344-ec1d-5b48-a673-e5cf874b6c29"
56+
57+
[targets]
58+
test = ["CSV", "Test", "Distributions", "NoveltyColors", "JSExpr", "JSON", "StatsBase", "KernelDensity", "Blink", "RDatasets", "RData", "ColorBrewer", "WebIO", "DataFrames", "Parameters"]

REQUIRE

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

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
environment:
22
matrix:
3-
- julia_version: 1
43
- julia_version: 1.1
4+
- julia_version: 1.2
55
- julia_version: nightly
66

77
platform:

0 commit comments

Comments
 (0)