-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:JuliaStats/MixedModels.jl into pa/b…
…enchmark_ci2
- Loading branch information
Showing
21 changed files
with
186 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# adapted from https://github.com/JuliaDocs/Documenter.jl/blob/master/.github/workflows/SpellCheck.yml | ||
# see docs at https://github.com/crate-ci/typos | ||
name: Spell Check | ||
on: [pull_request] | ||
|
||
jobs: | ||
typos-check: | ||
name: Spell Check with Typos | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
uses: actions/checkout@v4 | ||
- name: Check spelling | ||
uses: crate-ci/typos@master | ||
with: | ||
config: _typos.toml | ||
write_changes: true | ||
- uses: reviewdog/action-suggester@v1 | ||
with: | ||
tool_name: Typos | ||
fail_on_error: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "MixedModels" | ||
uuid = "ff71e718-51f3-5ec2-a782-8ffcbfa3c316" | ||
author = ["Phillip Alday <[email protected]>", "Douglas Bates <[email protected]>", "Jose Bayoan Santiago Calderon <[email protected]>"] | ||
version = "4.22.1" | ||
version = "4.22.5" | ||
|
||
[deps] | ||
Arrow = "69666777-d1a9-59fb-9406-91d4454c9d45" | ||
|
@@ -30,31 +30,47 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" | |
TypedTables = "9d95f2ec-7b3d-5a63-8d20-e2491e220bb9" | ||
|
||
[compat] | ||
Aqua = "0.8" | ||
Arrow = "1, 2" | ||
BSplineKit = "0.14, 0.15, 0.16" | ||
BSplineKit = "0.14, 0.15, 0.16, 0.17" | ||
DataAPI = "1" | ||
DataFrames = "1" | ||
Distributions = "0.21, 0.22, 0.23, 0.24, 0.25" | ||
ExplicitImports = "1.3" | ||
GLM = "1.8.2" | ||
InteractiveUtils = "1" | ||
JSON3 = "1" | ||
LinearAlgebra = "1" | ||
Markdown = "1" | ||
MixedModelsDatasets = "0.1" | ||
NLopt = "0.6, 1" | ||
PooledArrays = "0.5, 1" | ||
PrecompileTools = "1" | ||
ProgressMeter = "1.7" | ||
Random = "1" | ||
SparseArrays = "1" | ||
StableRNGs = "0.1, 1" | ||
StaticArrays = "0.11, 0.12, 1" | ||
Statistics = "1" | ||
StatsAPI = "1.5" | ||
StatsBase = "0.31, 0.32, 0.33, 0.34" | ||
StatsFuns = "0.8, 0.9, 1" | ||
StatsModels = "0.7" | ||
StructTypes = "1" | ||
Suppressor = "0.2" | ||
Tables = "1" | ||
Test = "1" | ||
TypedTables = "1" | ||
julia = "1.8" | ||
|
||
[extras] | ||
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" | ||
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" | ||
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7" | ||
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240" | ||
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3" | ||
Suppressor = "fd094767-a336-5f1f-9728-57cf17d0bbfb" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[targets] | ||
test = ["Test", "DataFrames"] | ||
test = ["Aqua", "DataFrames", "ExplicitImports", "InteractiveUtils", "StableRNGs", "Suppressor", "Test"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# https://github.com/crate-ci/typos#false-positives | ||
[default] | ||
|
||
[default.extend-identifiers] | ||
Lik = "Lik" | ||
missings = "missings" | ||
|
||
[default.extend-words] | ||
Lik = "Lik" | ||
missings = "missings" | ||
|
||
[type.package_toml] | ||
# Don't check spellings in these files | ||
extend-glob = ["Manifest.toml", "Project.toml"] | ||
check-file = false | ||
|
||
[type.bib] | ||
# contain lots of names, which are a great spot for false positives | ||
extend-glob = ["*.bib"] | ||
check-file = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.