Skip to content

Commit 5397494

Browse files
committed
trim dependencies
1 parent 7dae570 commit 5397494

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Project.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ GeoInterface = "cf35fbd7-0cd7-5166-be24-54bfbe79505f"
99
GeometryBasicsCore = "609001ca-df33-43ad-af5e-98eca4304ed0"
1010
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1111
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
12-
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1312
StructArrays = "09ab397b-f2b6-538f-b94a-2f83cf4a842a"
1413
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
1514

@@ -18,7 +17,6 @@ EarCut_jll = "2"
1817
GeoInterface = "1.0.1"
1918
GeometryBasicsCore = "1"
2019
Reexport = "1"
21-
StaticArrays = "0.12, 1.0"
2220
StructArrays = "0.6"
2321
Tables = "0.2, 1"
2422
julia = "1.6"
@@ -28,7 +26,8 @@ Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
2826
GeoJSON = "61d90e0f-e114-555e-ac52-39dfb47a3ef9"
2927
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
3028
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
29+
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
3130
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3231

3332
[targets]
34-
test = ["Aqua", "GeoJSON", "Test", "Random", "OffsetArrays"]
33+
test = ["Aqua", "GeoJSON", "Test", "Random", "StaticArrays", "OffsetArrays"]

test/runtests.jl

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ using LinearAlgebra
55
using GeoInterface
66
using GeoJSON
77

8+
@testset "GeometryBasics" begin
9+
810
@testset "algorithms" begin
911
cube = Rect(Vec3f(-0.5), Vec3f(1))
1012
cube_faces = decompose(TriangleFace{Int}, faces(cube))
@@ -477,3 +479,5 @@ using Aqua
477479
# Aqua tests
478480
# Intervals brings a bunch of ambiquities unfortunately
479481
Aqua.test_all(GeometryBasics; ambiguities=false)
482+
483+
end # testset

0 commit comments

Comments
 (0)