Skip to content

Commit b65ee6b

Browse files
committed
add a Project.toml
Drops julia 0.7 support and updates CI as well.
1 parent 755cb34 commit b65ee6b

4 files changed

Lines changed: 20 additions & 18 deletions

File tree

.travis.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,13 @@ os:
44
- linux
55
- osx
66
julia:
7-
- 0.7
87
- 1.0
8+
- 1
99
- nightly
1010
notifications:
1111
email: false
1212
matrix:
1313
allow_failures:
1414
- julia: nightly
1515
fast_finish: true
16-
# uncomment the following lines to override the default test script
17-
# script:
18-
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
19-
# - julia -e 'Pkg.clone(pwd()); Pkg.build("LibSpatialIndex"); Pkg.test("LibSpatialIndex"; coverage=true)'
20-
## uncomment and modify the following lines to manually install system packages
21-
after_success:
22-
# push coverage results to Coveralls
23-
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
16+
coveralls: true

Project.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name = "LibSpatialIndex"
2+
uuid = "f19c2e90-9d16-5f2d-a2a7-af3fb29e4907"
3+
license = "MIT"
4+
version = "0.2.0"
5+
6+
[deps]
7+
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
8+
9+
[compat]
10+
BinaryProvider = "0.5"
11+
julia = "1"
12+
13+
[extras]
14+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
15+
16+
[targets]
17+
test = ["Test"]

REQUIRE

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

appveyor.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
environment:
22
matrix:
3-
- julia_version: 0.7
3+
- julia_version: 1.0
44
- julia_version: 1
55
- julia_version: nightly
66

@@ -35,9 +35,3 @@ build_script:
3535
test_script:
3636
- echo "%JL_TEST_SCRIPT%"
3737
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
38-
39-
# # Uncomment to support code coverage upload. Should only be enabled for packages
40-
# # which would have coverage gaps without running on Windows
41-
# on_success:
42-
# - echo "%JL_CODECOV_SCRIPT%"
43-
# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"

0 commit comments

Comments
 (0)