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/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
# - uses: actions/checkout@v4
# with:
# ref: 'keepalive' # The branch, tag or SHA to checkout.
# - uses: bgctw/keepalive-workflow@master
# - uses: EarthyScience/keepalive-workflow@master
# keepalive-job:
# name: Keepalive Workflow
# runs-on: ubuntu-latest
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# DistributionFits

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://bgctw.github.io/DistributionFits.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://bgctw.github.io/DistributionFits.jl/dev)
[![Build Status](https://github.com/bgctw/DistributionFits.jl/workflows/CI/badge.svg)](https://github.com/bgctw/DistributionFits.jl/actions)
[![Coverage](https://codecov.io/gh/bgctw/DistributionFits.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/bgctw/DistributionFits.jl)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://EarthyScience.github.io/DistributionFits.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://EarthyScience.github.io/DistributionFits.jl/dev)
[![Build Status](https://github.com/EarthyScience/DistributionFits.jl/workflows/CI/badge.svg)](https://github.com/EarthyScience/DistributionFits.jl/actions)
[![Coverage](https://codecov.io/gh/EarthyScience/DistributionFits.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/EarthyScience/DistributionFits.jl)


Extends [Distributions.jl](https://github.com/JuliaStats/Distributions.jl)
Expand All @@ -19,7 +19,7 @@ to

This can also be used to approximate one distribution via a different distribution by matching its moments.

User needs to [explicitly using Optim.jl](https://bgctw.github.io/DistributionFits.jl/stable/set_optimize/) for DistributionFits.jl to work properly:
User needs to [explicitly using Optim.jl](https://EarthyScience.github.io/DistributionFits.jl/stable/set_optimize/) for DistributionFits.jl to work properly:
```julia
using DistributionFits, Optim
```
Expand All @@ -32,4 +32,4 @@ Currently, support for the following distributios are implemented:
- Weibull (only fitting to two quantiles)
- Gamma (only fitting to two quantiles)

See [Documentation](https://bgctw.github.io/DistributionFits.jl/dev)
See [Documentation](https://EarthyScience.github.io/DistributionFits.jl/dev)
8 changes: 4 additions & 4 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ DocMeta.setdocmeta!(DistributionFits,
makedocs(;
modules = [DistributionFits],
authors = "Thomas Wutzler <[email protected]> and contributors",
#repo="https://github.com/bgctw/DistributionFits.jl/blob/{commit}{path}#{line}",
repo = Remotes.GitHub("bgctw", "DistributionFits.jl"),
#repo="https://github.com/EarthyScience/DistributionFits.jl/blob/{commit}{path}#{line}",
repo = Remotes.GitHub("EarthyScience", "DistributionFits.jl"),
sitename = "DistributionFits.jl",
format = Documenter.HTML(;
prettyurls = get(ENV, "CI", "false") == "true",
canonical = "https://bgctw.github.io/DistributionFits.jl",
canonical = "https://EarthyScience.github.io/DistributionFits.jl",
assets = String[],),
pages = [
"Home" => "index.md",
Expand All @@ -37,5 +37,5 @@ makedocs(;
],)

deploydocs(;
repo = "github.com/bgctw/DistributionFits.jl",
repo = "github.com/EarthyScience/DistributionFits.jl",
devbranch = "main",)
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CurrentModule = DistributionFits

# DistributionFits

Package [DistributionFits](https://github.com/bgctw/DistributionFits.jl)
Package [DistributionFits](https://github.com/EarthyScience/DistributionFits.jl)
allows fitting a distribution to a given
set of aggregate statistics.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/z_autodocs.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CurrentModule = DistributionFits

# DistributionFits

Documentation for [DistributionFits](https://github.com/bgctw/DistributionFits.jl).
Documentation for [DistributionFits](https://github.com/EarthyScience/DistributionFits.jl).

```@index
```
Expand Down
Loading