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 5, 2019
1 parent 66f3c05 commit b57db5a
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 9 deletions.
7 changes: 2 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,11 @@ os:
- linux
julia:
- 1.0
- 1
- nightly
notifications:
email: false
matrix:
allow_failures:
- julia: nightly
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --check-bounds=yes -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("Geodesy"); Pkg.test("Geodesy"; coverage=true)'
after_success:
- julia -e 'using Pkg; cd(Pkg.dir("Geodesy")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
coveralls: true
23 changes: 23 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name = "Geodesy"
uuid = "0ef565a4-170c-5f04-8de2-149903a85f3d"
license = "MIT"
version = "0.6.0"

[deps]
CoordinateTransformations = "150eb455-5306-5404-9cee-2592286d6298"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
CoordinateTransformations = "0.5"
StaticArrays = "0.8, 0.9 0.10, 0.11, 0.12"
julia = "1"

[extras]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Dates", "LinearAlgebra", "Test"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ is also provided. `LatLon` is currently the only supported 2D coordinate.

The global `ECEF` type stores Cartesian coordinates `x`, `y`, `z`, according to the
[usual convention](https://en.wikipedia.org/wiki/ECEF). Being a Cartesian frame,
`ECEF` is a subtype of [StaticArrays](https://github.com/andyferris/StaticArrays.jl)'
`ECEF` is a subtype of [StaticArrays](https://github.com/JuliaArrays/StaticArrays.jl)'
`StaticVector` and they can be added and subtracted with themselves and other
vectors.

Expand Down
3 changes: 0 additions & 3 deletions REQUIRE

This file was deleted.

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

Expand Down

0 comments on commit b57db5a

Please sign in to comment.