Skip to content

Commit 3c916a6

Browse files
authored
Update docs (#95)
* Update docs * Bump Julia compat, trim StatsBase * - * update documented function lists
1 parent edc0b29 commit 3c916a6

File tree

7 files changed

+29
-9
lines changed

7 files changed

+29
-9
lines changed

.github/workflows/TagBot.yml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,31 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 0 * * * *
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: 3
10+
permissions:
11+
actions: read
12+
checks: read
13+
contents: write
14+
deployments: read
15+
issues: read
16+
discussions: read
17+
packages: read
18+
pages: read
19+
pull-requests: read
20+
repository-projects: read
21+
security-events: read
22+
statuses: read
523
jobs:
624
TagBot:
25+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
726
runs-on: ubuntu-latest
827
steps:
928
- uses: JuliaRegistries/TagBot@v1
1029
with:
1130
token: ${{ secrets.GITHUB_TOKEN }}
31+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
julia-version: ["1.0", "1.6", "1.9"]
14+
julia-version: ["1.6", "1.9", "~1.10.0-0"]
1515
os: [ubuntu-latest, macOS-latest, windows-latest]
1616
steps:
1717
- uses: actions/checkout@v4

.github/workflows/documenter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: julia-actions/setup-julia@latest
1515
with:
16-
version: 1.4
16+
version: 1.6
1717
- uses: julia-actions/julia-docdeploy@releases/v1
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Project.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
99
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1010

1111
[compat]
12+
LinearAlgebra = "1"
1213
Statistics = "1"
13-
StatsBase = "0.29, 0.30, 0.31, 0.32, 0.33, 0.34"
14-
julia = "1.0"
14+
StatsBase = "0.33, 0.34"
15+
julia = "1.6"
1516

1617
[extras]
1718
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
66

77
[compat]
88
Distributions = "0.25"
9-
Documenter = "0.25"
9+
Documenter = "1"

docs/src/lib/internals.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Pages = ["internals.md"]
2121
```@docs
2222
CovarianceEstimation.epanechnikov
2323
CovarianceEstimation.epanechnikov_HT1
24+
CovarianceEstimation.epanechnikov_HT2
2425
CovarianceEstimation.rescale
2526
CovarianceEstimation.rescale!
2627
CovarianceEstimation.uccov

docs/src/lib/public.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ Pages = ["public.md"]
2020

2121
```@docs
2222
cov
23-
StatsBase.CovarianceEstimator
24-
StatsBase.SimpleCovariance
2523
LinearShrinkage
2624
DiagonalUnitVariance
2725
DiagonalCommonVariance

0 commit comments

Comments
 (0)