Skip to content

Commit bc7a0cb

Browse files
authored
Merge pull request #28 from JuliaAI/dev
For a 0.1.4 release
2 parents 8de0418 + 8b42f26 commit bc7a0cb

5 files changed

Lines changed: 42 additions & 37 deletions

File tree

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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: "monthly"
8+
- package-ecosystem: "julia"
9+
directories: # Location of Julia projects
10+
- "/"
11+
- "/docs"
12+
schedule:
13+
interval: "weekly"

.github/workflows/CompatHelper.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
arch:
2525
- x64
2626
steps:
27-
- uses: actions/checkout@v2
28-
- uses: julia-actions/setup-julia@v1
27+
- uses: actions/checkout@v6
28+
- uses: julia-actions/setup-julia@v2
2929
with:
3030
version: ${{ matrix.version }}
3131
arch: ${{ matrix.arch }}
32-
- uses: julia-actions/cache@v1
32+
- uses: julia-actions/cache@v2
3333
env:
3434
cache-name: cache-artifacts
3535
with:
@@ -44,25 +44,26 @@ jobs:
4444
env:
4545
JULIA_NUM_THREADS: 2
4646
- uses: julia-actions/julia-processcoverage@v1
47-
- uses: codecov/codecov-action@v1
47+
- uses: codecov/codecov-action@v5
4848
with:
49-
file: lcov.info
49+
files: lcov.info
5050
docs:
5151
name: Documentation
5252
runs-on: ubuntu-latest
5353
steps:
54-
- uses: actions/checkout@v2
55-
- uses: julia-actions/setup-julia@v1
54+
- uses: actions/checkout@v6
55+
- uses: julia-actions/setup-julia@v2
5656
with:
5757
version: '1'
5858
- uses: julia-actions/julia-buildpkg@v1
5959
- uses: julia-actions/julia-docdeploy@v1
6060
env:
6161
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6262
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
63-
- run: |
64-
julia --project=docs -e '
65-
using Documenter: DocMeta, doctest
66-
using StatisticalMeasuresBase
67-
DocMeta.setdocmeta!(StatisticalMeasuresBase, :DocTestSetup, :(using StatisticalMeasuresBase); recursive=true)
68-
doctest(StatisticalMeasuresBase)'
63+
- name: Run doctests
64+
shell: julia --color=yes --project=docs {0}
65+
run: |
66+
using Documenter: DocMeta, doctest
67+
using StatisticalMeasuresBase
68+
DocMeta.setdocmeta!(StatisticalMeasuresBase, :DocTestSetup, :(using StatisticalMeasuresBase); recursive=true)
69+
doctest(StatisticalMeasuresBase)

Project.toml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "StatisticalMeasuresBase"
22
uuid = "c062fc1d-0d66-479b-b6ac-8b44719de4cc"
33
authors = ["Anthony D. Blaom <anthony.blaom@gmail.com>"]
4-
version = "0.1.3"
4+
version = "0.1.4"
55

66
[deps]
77
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
@@ -17,8 +17,21 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1717
CategoricalArrays = "0.10, 1"
1818
MLUtils = "0.4"
1919
MacroTools = "0.5"
20-
OrderedCollections = "1.6"
20+
OrderedCollections = "1.6, 2"
2121
PrecompileTools = "1.1"
22+
ScientificTypes = "3"
2223
ScientificTypesBase = "3"
24+
StableRNGs = "1"
2325
Statistics = "1"
26+
Tables = "1"
27+
Test = "1"
2428
julia = "1.10"
29+
30+
[extras]
31+
ScientificTypes = "321657f4-b219-11e9-178b-2701a2544e81"
32+
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
33+
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
34+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
35+
36+
[targets]
37+
test = ["ScientificTypes", "StableRNGs", "Tables", "Test"]

test/Project.toml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)