Skip to content

Commit

Permalink
Merge branch 'release/0.14.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
jorenham committed May 23, 2024
2 parents ba85818 + c032e9c commit 144474a
Show file tree
Hide file tree
Showing 13 changed files with 469 additions and 282 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ repos:
- tomli

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.4
rev: v0.4.5
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]

- repo: https://github.com/RobertCraigie/pyright-python
rev: v1.1.363
rev: v1.1.364
hooks:
- id: pyright
41 changes: 27 additions & 14 deletions lmo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,31 +1,42 @@
"""Lmo: Robust statistics with trimmed L-moments and L-comoments."""
import sys
"""
Robust statistics with trimmed L-moments and L-comoments.
"""

import sys # noqa: I001
from typing import TYPE_CHECKING, Final

from ._lm import (
l_kurtosis,
l_loc,
l_moment,
l_moment_cov,
l_moment_influence,
l_ratio,
l_ratio_influence,
l_ratio_se,
l_scale,
l_variation,
l_skew,
l_kurtosis,

l_kurt,
l_moment,
l_ratio,
l_stats,

l_moment_cov,
l_ratio_se,
l_stats_se,
l_variation,

l_moment_influence,
l_ratio_influence,

l_weights,
)
from ._lm_co import (
l_cokurtosis,
l_coloc,
l_comoment,
l_coratio,
l_corr,
l_coscale,

l_corr,
l_coskew,
l_cokurtosis,
l_cokurt,

l_comoment,
l_coratio,
l_costats,
)
from ._meta import get_version as _get_version
Expand Down Expand Up @@ -60,6 +71,7 @@
'l_variation',
'l_skew',
'l_kurtosis',
'l_kurt',

'l_moment',
'l_ratio',
Expand All @@ -79,6 +91,7 @@
'l_corr',
'l_coskew',
'l_cokurtosis',
'l_cokurt',

'l_comoment',
'l_coratio',
Expand Down
Loading

0 comments on commit 144474a

Please sign in to comment.