Skip to content

Commit

Permalink
Import LinearAlgebra (#10)
Browse files Browse the repository at this point in the history
Needed by `stderror` to call `diag`.
  • Loading branch information
nalimilan authored Feb 15, 2022
1 parent ea8019a commit 3b899d9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ uuid = "82ae8749-77ed-4fe6-ae5f-f523153014b0"
authors = ["Milan Bouchet-Valat <[email protected]"]
version = "1.2.1"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

[compat]
julia = "1"

Expand Down
2 changes: 2 additions & 0 deletions src/StatsAPI.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module StatsAPI

using LinearAlgebra

include("statisticalmodel.jl")
include("regressionmodel.jl")

Expand Down

2 comments on commit 3b899d9

@nalimilan
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/54731

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.2.1 -m "<description of version>" 3b899d9ed6e5307f1733499a6d1562e6aa26ca46
git push origin v1.2.1

Please sign in to comment.