Skip to content

Commit

Permalink
Avoid loading some unused symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
rikhuijzer committed Oct 22, 2022
1 parent 257ac62 commit 69b4d6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PowerAnalyses"
uuid = "fee4b835-1841-44f8-82ea-42813857171a"
authors = ["Rik Huijzer <[email protected]>"]
version = "0.2.3"
authors = ["Rik Huijzer <[email protected]>"]
version = "0.2.4"

[deps]
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Expand Down
11 changes: 0 additions & 11 deletions src/PowerAnalyses.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,11 @@ using Distributions:
NoncentralChisq,
NoncentralF,
NoncentralT,
TDist,
UnivariateDistribution,
ccdf,
cdf,
pdf,
quantile
using Roots: find_zero

const PKGDIR = string(pkgdir(PowerAnalyses))::String

let
path = joinpath(PKGDIR, "README.md")
text = read(path, String)
@doc text PowerAnalyses
end

include("types.jl")
include("power.jl")

Expand Down

2 comments on commit 69b4d6d

@rikhuijzer
Copy link
Owner 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 created: JuliaRegistries/General/70822

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 v0.2.4 -m "<description of version>" 69b4d6dd32f465e06a625400b5ea4aa630e14cd2
git push origin v0.2.4

Please sign in to comment.