Skip to content

Commit

Permalink
switch installation to pre-empt registration
Browse files Browse the repository at this point in the history
  • Loading branch information
mileslucas committed Jun 14, 2022
1 parent 5ebbda9 commit 3a34556
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ Robust statistics based on the biweight transform.

## Installation

BiweightStats.jl can be installed using the Julia package manager. From the Julia REPL, enter Pkg mode (by pressing `]`)
BiweightStats.jl is a registered package and can be installed using the Julia package manager. From the Julia REPL, enter Pkg mode (by pressing `]`)

```julia
julia>]

pkg> add https://github.com/mileslucas/BiweightStats.jl
pkg> add BiweightStats
```

To exit Pkg mode, just backspace. Once the package is installed it can be imported with
Expand Down
5 changes: 3 additions & 2 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ Robust statistics based on the biweight transform.

## Installation

BiweightStats.jl can be installed using the Julia package manager. From the Julia REPL, enter Pkg mode (by pressing `]`)
BiweightStats.jl is a registered package and can be installed using the Julia package manager. From the Julia REPL, enter Pkg mode (by pressing `]`)

```julia
julia>]

pkg> add https://github.com/mileslucas/BiweightStats.jl
pkg> add BiweightStats
```


To exit Pkg mode, just backspace. Once the package is installed it can be imported with

```julia
Expand Down

2 comments on commit 3a34556

@mileslucas
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/62340

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.1.0 -m "<description of version>" 3a34556b9b1b9de285abb23c547b454f5ba2fa10
git push origin v0.1.0

Please sign in to comment.