Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Aqua, fix Project.toml and exports #75

Merged
merged 3 commits into from
Mar 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
Parsers = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
ReferenceFrameRotations = "74f56ac7-18b3-5285-802d-d4bd4f104033"
Rotations = "6038ab10-8711-5258-84ad-4b1120ba62dc"
Expand All @@ -23,27 +22,35 @@ StructTypes = "856f2bd8-1eba-4b0a-8007-ebc267875bd4"
YAML = "ddb6d928-2868-570f-bddf-ab3f9cf99eb6"

[compat]
Aqua = "0.8"
Arrow = "2.7.3"
BenchmarkTools = "1.6"
CSV = "0.10.14"
DocStringExtensions = "0.9.3"
Documenter = "1.8"
LinearAlgebra = "1"
OrderedCollections = "1.6.3"
Parameters = "0.12.3"
Parsers = "2.8.1"
Pkg = "1"
PrecompileTools = "1.2.1"
RecursiveArrayTools = "3.27"
ReferenceFrameRotations = "3.0.2"
REPL = "1"
Rotations = "1.7.1"
StaticArrays = "1.9.7"
StructArrays = "0.6.18"
StructTypes = "1.11.0"
Test = "1"
YAML = "0.4.12"
julia = "1.10"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
KiteUtils = "90980105-b163-44e5-ba9f-8b1c83bb0533"
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "Documenter", "KiteUtils", "BenchmarkTools"]
test = ["Test", "REPL", "Documenter", "BenchmarkTools", "Aqua"]
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://ufechner7.github.io/KiteUtils.jl/dev)
[![Build Status](https://github.com/ufechner7/KiteUtils.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/ufechner7/KiteUtils.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/ufechner7/KiteUtils.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/ufechner7/KiteUtils.jl)
[![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)

Utilities for simulating kite power systems.

Expand Down
2 changes: 1 addition & 1 deletion src/KiteUtils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export demo_state, demo_syslog, demo_log, load_log, save_log, export_log, import
export log!, syslog, length, euler2rot, menu
export demo_state_4p, demo_state_4p_3lines, initial_kite_ref_frame # functions for four point and three line kite
export rot, rot3d, ground_dist, calc_elevation, azimuth_east, azimuth_north, asin2
export acos2, wrap2pi, quat2euler, quat2frame, quat2viewer # geometric functions
export acos2, wrap2pi, quat2euler, quat2viewer # geometric functions
export fromEG2W, fromENU2EG,fromW2SE, fromKS2EX, fromEX2EG # reference frame transformations
export azn2azw, calc_heading_w, calc_heading, calc_course # geometric functions
export calc_orient_rot, is_right_handed_orthonormal, enu2ned, ned2enu
Expand Down
2 changes: 2 additions & 0 deletions test/aqua.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
using Aqua
Aqua.test_all(KiteUtils)
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,6 @@ include("test_orientation.jl")
include("test_azimuth.jl")
include("test_rotational_inertia.jl")
include("bench.jl")
include("aqua.jl")
end
nothing
Loading