Skip to content

Commit d73e440

Browse files
authored
Merge pull request #128 from alyst/toml_switch
Switch to Project.toml
2 parents 2c010b3 + fb58af4 commit d73e440

File tree

6 files changed

+34
-8
lines changed

6 files changed

+34
-8
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ os:
55
julia:
66
- 1.0
77
- 1.1
8+
- 1.2
89
- nightly
910
matrix:
1011
allow_failures:

Project.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name = "BlackBoxOptim"
2+
uuid = "a134a8b2-14d6-55f6-9291-3336d3ab0209"
3+
version = "0.5.0"
4+
5+
[deps]
6+
CPUTime = "a9c8d775-2e2e-55fc-8582-045d282d599e"
7+
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
8+
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
9+
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
10+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
11+
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
12+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
13+
SpatialIndexing = "d4ead438-fe20-5cc5-a293-4fd39a41b74c"
14+
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
15+
16+
[compat]
17+
SpatialIndexing = "≥ 0.1.0"
18+
julia = "≥ 1.0.3"
19+
20+
[extras]
21+
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
22+
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
23+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
24+
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
25+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
26+
SHA = "ea8e919c-243c-51af-8825-aaa63cd721ce"
27+
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
28+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
29+
30+
[targets]
31+
test = ["CSV", "Serialization", "SHA", "LinearAlgebra", "Test", "Random", "Printf", "Distributed"]

REQUIRE

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

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ environment:
22
matrix:
33
- julia_version: 1.0
44
- julia_version: 1.1
5+
- julia_version: 1.2
56
- julia_version: latest
67

78
platform:

test/REQUIRE

Lines changed: 0 additions & 1 deletion
This file was deleted.

test/test_parameters.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
dc = DictChain(d1, d2, d3)
117117
iob = IOBuffer()
118118
show(iob, dc)
119-
@test String(take!(iob)) == "BlackBoxOptim.DictChain{Symbol,$Int}[Dict(:a=>1),Dict(:a=>2,:b=>4),Dict(:a=>3,:b=>5)]"
119+
@test replace(String(take!(iob)), ' '=>"") == "BlackBoxOptim.DictChain{Symbol,$Int}[Dict(:a=>1),Dict(:a=>2,:b=>4),Dict(:a=>3,:b=>5)]"
120120
end
121121

122122
@testset "flatten" begin

0 commit comments

Comments
 (0)