Skip to content

Commit 51bdb83

Browse files
authored
Merge pull request #70 from tpapp/tp/package-structure-facelift
a Project.toml, remove REQUIRE, update travis conf
2 parents 8c73596 + 83e5497 commit 51bdb83

File tree

5 files changed

+48
-16
lines changed

5 files changed

+48
-16
lines changed

.codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
comment: false

.travis.yml

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,35 @@
1+
## Documentation: http://docs.travis-ci.com/user/languages/julia/
12
language: julia
3+
dist: xenial
24
os:
35
- linux
46
- osx
57
julia:
6-
- 0.7
78
- 1.0
9+
- 1.1
10+
- 1.2
811
- nightly
9-
matrix:
10-
allow_failures:
11-
- julia: nightly
1212
notifications:
1313
email: false
14-
# Uncomment the following lines to override the default test script
15-
#script:
16-
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
17-
# - julia -e 'Pkg.clone(pwd()); Pkg.build("KernelDensity"); Pkg.test("KernelDensity"; coverage=true)'
14+
git:
15+
depth: 99999999
16+
17+
## uncomment the following lines to allow failures on nightly julia
18+
## (tests will run but not make your overall status red)
19+
#matrix:
20+
# allow_failures:
21+
# - julia: nightly
22+
23+
## uncomment following lines to deploy documentation
24+
# jobs:
25+
# include:
26+
# - stage: Documentation
27+
# julia: 1.0
28+
# os: linux
29+
# script:
30+
# - julia --project=docs -e 'using Pkg; Pkg.instantiate(); Pkg.develop(PackageSpec(path=pwd()))'
31+
# - julia --project=docs --color=yes docs/make.jl
32+
# after_success: skip
1833
after_success:
19-
- julia -e 'import Pkg, KernelDensity; cd(joinpath(dirname(pathof(KernelDensity)), "..")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
34+
- julia --project=test/coverage -e 'using Pkg; Pkg.instantiate()'
35+
- julia --project=test/coverage test/coverage/coverage.jl

Project.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name = "KernelDensity"
2+
uuid = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b"
3+
authors = ["Simon Byrne and various contributors"]
4+
version = "0.5.1"
5+
6+
[deps]
7+
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
8+
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
9+
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
10+
Optim = "429524aa-4258-5aef-a3af-852621145aeb"
11+
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
12+
13+
[compat]
14+
Interpolations = "≥ 0.9"
15+
Optim = "≥ 0.16"
16+
julia = "^1"
17+
18+
[extras]
19+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
20+
21+
[targets]
22+
test = ["Test"]

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![Build Status](https://travis-ci.org/JuliaStats/KernelDensity.jl.svg?branch=master)](https://travis-ci.org/JuliaStats/KernelDensity.jl)
44
[![Coverage Status](https://coveralls.io/repos/github/JuliaStats/KernelDensity.jl/badge.svg)](https://coveralls.io/github/JuliaStats/KernelDensity.jl)
5-
[![KernelDensity](http://pkg.julialang.org/badges/KernelDensity_0.6.svg)](http://pkg.julialang.org/?pkg=KernelDensity)
65

76
Kernel density estimators for Julia.
87

REQUIRE

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

0 commit comments

Comments
 (0)