Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
timeout-minutes: 180
timeout-minutes: 60
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
actions: write
contents: read
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

## [Unreleased]

### Fixed

- Fixed a typo in some comments in the *Aqua.jl* static analysis tests (#60).

## [0.1.2] - 2025-08-13

### Added
Expand Down
4 changes: 2 additions & 2 deletions test/static_analysis/aqua.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ using Aqua
piracies=(; treat_as_own=[SDiagonalizability.LinearAlgebra.rank]),
persistent_tasks=false, # Account for our manual definition of `LinearAlgebra.rank`
)
#= We manually define the `LinearAlgebra.rank(::QRPivoted)` method, as it is not
available in Julua 1.11 and earlier. =#
#= We manually define the `LinearAlgebra.rank(::QRPivoted)` method when using a Julia
version below v1.12. =#
@test length(Aqua.Piracy.hunt(SDiagonalizability)) <= 2
end

Expand Down