Skip to content

Commit 443e332

Browse files
committed
update repo urls to EarthyScience
1 parent f8a4def commit 443e332

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ jobs:
4646
# - uses: actions/checkout@v2
4747
# with:
4848
# ref: 'keepalive' # The branch, tag or SHA to checkout.
49-
# - uses: bgctw/keepalive-workflow@master
49+
# - uses: EarthyScience/keepalive-workflow@master
5050

5151

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ tmp
77
dev
88
docs/Manifest*.toml
99
test/Manifest*.toml
10+
.vscode/settings.json

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# SubglobalSensitivityAnalysis
22

3-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://bgctw.github.io/SubglobalSensitivityAnalysis.jl/stable/)
4-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://bgctw.github.io/SubglobalSensitivityAnalysis.jl/dev/)
5-
[![Build Status](https://github.com/bgctw/SubglobalSensitivityAnalysis.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/bgctw/SubglobalSensitivityAnalysis.jl/actions/workflows/CI.yml?query=branch%3Amain)
6-
[![Coverage](https://codecov.io/gh/bgctw/SubglobalSensitivityAnalysis.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/bgctw/SubglobalSensitivityAnalysis.jl)
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://EarthyScience.github.io/SubglobalSensitivityAnalysis.jl/stable/)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://EarthyScience.github.io/SubglobalSensitivityAnalysis.jl/dev/)
5+
[![Build Status](https://github.com/EarthyScience/SubglobalSensitivityAnalysis.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/EarthyScience/SubglobalSensitivityAnalysis.jl/actions/workflows/CI.yml?query=branch%3Amain)
6+
[![Coverage](https://codecov.io/gh/EarthyScience/SubglobalSensitivityAnalysis.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/EarthyScience/SubglobalSensitivityAnalysis.jl)
77
[![Aqua](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)
88

99
Estimating Sobol sensitivity indices for a subspace of the global space
@@ -26,9 +26,9 @@ of the parameter is higher.
2626

2727
## Getting started
2828
Setup arguments and call the main function
29-
[`estimate_subglobal_sobol_indices`](https://bgctw.github.io/SubglobalSensitivityAnalysis.jl/dev/estimate_subglobal/#SubglobalSensitivityAnalysis.estimate_subglobal_sobol_indices),
29+
[`estimate_subglobal_sobol_indices`](https://EarthyScience.github.io/SubglobalSensitivityAnalysis.jl/dev/estimate_subglobal/#SubglobalSensitivityAnalysis.estimate_subglobal_sobol_indices),
3030
as described in
31-
[Getting started](https://bgctw.github.io/SubglobalSensitivityAnalysis.jl/dev/getting_started).
31+
[Getting started](https://EarthyScience.github.io/SubglobalSensitivityAnalysis.jl/dev/getting_started).
3232

3333
## Handle foreign dependencies
3434
This Julia package depends on `RCall.jl` and the `sensitivity` R package.
@@ -42,7 +42,7 @@ using SubglobalSensitivityAnalysis
4242
install_R_dependencies(["sensitivity"])
4343
```
4444

45-
Caution, this may interfere with other R projects (see [docu](https://bgctw.github.io/SubglobalSensitivityAnalysis.jl/dev/install_R_dependencies/#SubglobalSensitivityAnalysis.install_R_dependencies)).
45+
Caution, this may interfere with other R projects (see [docu](https://EarthyScience.github.io/SubglobalSensitivityAnalysis.jl/dev/install_R_dependencies/#SubglobalSensitivityAnalysis.install_R_dependencies)).
4646

4747
Note, this installation to R user library needs to be run in a Julia session
4848
before running other commands

docs/make.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ DocMeta.setdocmeta!(SubglobalSensitivityAnalysis, :DocTestSetup, :(using Subglob
1313
makedocs(;
1414
#modules=[SubglobalSensitivityAnalysis], # uncomment to show warnings on non-included docstrings
1515
authors="Thomas Wutzler <[email protected]> and contributors",
16-
repo="https://github.com/bgctw/SubglobalSensitivityAnalysis.jl/blob/{commit}{path}#{line}",
16+
repo="https://github.com/EarthyScience/SubglobalSensitivityAnalysis.jl/blob/{commit}{path}#{line}",
1717
sitename="SubglobalSensitivityAnalysis.jl",
1818
format=Documenter.HTML(;
1919
prettyurls=get(ENV, "CI", "false") == "true",
20-
canonical="https://bgctw.github.io/SubglobalSensitivityAnalysis.jl",
20+
canonical="https://EarthyScience.github.io/SubglobalSensitivityAnalysis.jl",
2121
edit_link="main",
2222
assets=String[],
2323
),
@@ -39,6 +39,6 @@ makedocs(;
3939
)
4040

4141
deploydocs(;
42-
repo="github.com/bgctw/SubglobalSensitivityAnalysis.jl",
42+
repo="github.com/EarthyScience/SubglobalSensitivityAnalysis.jl",
4343
devbranch="main",
4444
)

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CurrentModule = SubglobalSensitivityAnalysis
55
# SubglobalSensitivityAnalysis
66

77
Documentation for package
8-
[SubglobalSensitivityAnalysis.jl](https://github.com/bgctw/SubglobalSensitivityAnalysis.jl).
8+
[SubglobalSensitivityAnalysis.jl](https://github.com/EarthyScience/SubglobalSensitivityAnalysis.jl).
99

1010
Estimating Sobol sensitivity indices for a subspace of the global space
1111
around a parameter vector `p0`.

0 commit comments

Comments
 (0)