Skip to content

Commit 53e2c49

Browse files
author
Luke Stagner
committed
switch to new package system
1 parent fbc3a3f commit 53e2c49

File tree

4 files changed

+40
-9
lines changed

4 files changed

+40
-9
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.jl.cov
22
*.jl.*.cov
33
*.jl.mem
4+
Manifest.toml

.travis.yml

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,29 @@ os:
44
- linux
55
- osx
66
julia:
7-
- 0.7
7+
- 1.2
88
- nightly
9-
# matrix:
10-
# allow_failures:
11-
# - julia: nightly
129
notifications:
1310
email: false
14-
# uncomment the following lines to override the default test script
11+
git:
12+
depth: 99999999
13+
14+
## uncomment the following lines to allow failures on nightly julia
15+
## (tests will run but not make your overall status red)
16+
matrix:
17+
allow_failures:
18+
- julia: nightly
19+
20+
## uncomment and modify the following lines to manually install system packages
21+
#addons:
22+
# apt: # apt-get for linux
23+
# packages:
24+
# - gfortran
25+
#before_script: # homebrew for mac
26+
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
27+
28+
## uncomment the following lines to override the default test script
1529
#script:
16-
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
1730
# - julia -e 'Pkg.clone(pwd()); Pkg.build("ConcaveHull"); Pkg.test("ConcaveHull"; coverage=true)'
1831
after_success:
1932
# push coverage results to Coveralls

Project.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name = "ConcaveHull"
2+
uuid = "7d11a335-8259-52c9-8750-e30c45c66484"
3+
author = ["Luke Stagner <[email protected]>"]
4+
version = "1.0.0"
5+
6+
[deps]
7+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
8+
NearestNeighbors = "b8a86587-4115-5ab1-83bc-aa920d37bbce"
9+
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
10+
11+
[compat]
12+
NearestNeighbors = "^0.4.3"
13+
RecipesBase = "^0.7"
14+
julia = "^1"
15+
16+
[extras]
17+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
18+
19+
[targets]
20+
test = ["Test"]

REQUIRE

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

0 commit comments

Comments
 (0)