Skip to content

Commit 7b24c1b

Browse files
authored
StatsBase 0.34 compat (#85)
* StatsBase 0.34 compat * update CI
1 parent f123f5f commit 7b24c1b

File tree

4 files changed

+26
-14
lines changed

4 files changed

+26
-14
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/" # Location of package manifests
6+
schedule:
7+
interval: "weekly"

.github/workflows/CompatHelper.yml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
name: CompatHelper
2-
32
on:
43
schedule:
5-
- cron: '00 00 * * *'
6-
4+
- cron: 0 0 * * *
5+
workflow_dispatch:
76
jobs:
87
CompatHelper:
98
runs-on: ubuntu-latest
109
steps:
11-
- uses: julia-actions/setup-julia@latest
12-
with:
13-
version: 1.4
14-
- name: Pkg.add("CompatHelper")
15-
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
16-
- name: CompatHelper.main()
10+
- name: "Install CompatHelper"
11+
run: |
12+
import Pkg
13+
name = "CompatHelper"
14+
uuid = "aa819f21-2bde-4658-8897-bab36330d9b7"
15+
version = "3"
16+
Pkg.add(; name, uuid, version)
17+
shell: julia --color=yes {0}
18+
- name: "Run CompatHelper"
19+
run: |
20+
import CompatHelper
21+
CompatHelper.main()
22+
shell: julia --color=yes {0}
1723
env:
1824
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1925
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
20-
run: julia -e 'using CompatHelper; CompatHelper.main()'

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
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.4", "1.5"]
14+
julia-version: ["1.0", "1.6", "1.9"]
1515
os: [ubuntu-latest, macOS-latest, windows-latest]
1616
steps:
1717
- uses: actions/checkout@v2
@@ -25,4 +25,4 @@ jobs:
2525
- uses: codecov/codecov-action@v1
2626
with:
2727
fail_ci_if_error: false
28-
if: ${{ matrix.julia-version == '1.4' && matrix.os =='ubuntu-latest' }}
28+
if: ${{ matrix.os =='ubuntu-latest' }}

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name = "CovarianceEstimation"
22
uuid = "587fd27a-f159-11e8-2dae-1979310e6154"
33
authors = ["Mateusz Baran <[email protected]>", "Thibaut Lienart"]
4-
version = "0.2.8"
4+
version = "0.2.9"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
88
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
99
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1010

1111
[compat]
12-
StatsBase = "0.29, 0.30, 0.31, 0.32, 0.33"
12+
StatsBase = "0.29, 0.30, 0.31, 0.32, 0.33, 0.34"
1313
julia = "1.0"
1414

1515
[extras]

0 commit comments

Comments
 (0)