Skip to content

Commit

Permalink
add a Project.toml
Browse files Browse the repository at this point in the history
Drops julia 0.7 support and updates CI as well.
  • Loading branch information
visr committed Dec 4, 2019
1 parent 755cb34 commit c7bdbb8
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 18 deletions.
11 changes: 2 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,13 @@ os:
- linux
- osx
julia:
- 0.7
- 1.0
- 1
- nightly
notifications:
email: false
matrix:
allow_failures:
- julia: nightly
fast_finish: true
# uncomment the following lines to override the default test script
# script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia -e 'Pkg.clone(pwd()); Pkg.build("LibSpatialIndex"); Pkg.test("LibSpatialIndex"; coverage=true)'
## uncomment and modify the following lines to manually install system packages
after_success:
# push coverage results to Coveralls
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
coveralls: true
17 changes: 17 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name = "LibSpatialIndex"
uuid = "f19c2e90-9d16-5f2d-a2a7-af3fb29e4907"
license = "MIT"
version = "0.2.0"

[deps]
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"

[compat]
BinaryProvider = "0.5"
julia = "1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
2 changes: 0 additions & 2 deletions REQUIRE

This file was deleted.

8 changes: 1 addition & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
environment:
matrix:
- julia_version: 0.7
- julia_version: 1.0
- julia_version: 1
- julia_version: nightly

Expand Down Expand Up @@ -35,9 +35,3 @@ build_script:
test_script:
- echo "%JL_TEST_SCRIPT%"
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"

# # Uncomment to support code coverage upload. Should only be enabled for packages
# # which would have coverage gaps without running on Windows
# on_success:
# - echo "%JL_CODECOV_SCRIPT%"
# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"

0 comments on commit c7bdbb8

Please sign in to comment.