Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #89

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ repos:

# Python linter (Flake8)
- repo: https://github.com/PyCQA/flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8

Expand All @@ -47,6 +47,6 @@ repos:

# Python formatting
- repo: https://github.com/psf/black
rev: 23.11.0
rev: 24.1.1
hooks:
- id: black
1 change: 1 addition & 0 deletions src/numba_stats/cpoisson.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

There is a Meijer G-function implemented in mpmath, but I don't know how to use it.
"""

from ._special import gammaincc as _gammaincc
from ._util import _jit, _generate_wrappers, _prange
import numpy as np
Expand Down
1 change: 1 addition & 0 deletions src/numba_stats/crystalball.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
--------
scipy.stats.crystalball: Scipy equivalent.
"""

from ._util import _jit, _trans, _generate_wrappers, _prange
import numpy as np
from math import erf as _erf
Expand Down
1 change: 1 addition & 0 deletions src/numba_stats/expon.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
--------
scipy.stats.expon: Scipy equivalent.
"""

import numpy as np
from math import expm1 as _expm1, log1p as _log1p
from ._util import _jit, _trans, _generate_wrappers, _prange, _rvs_jit, _seed
Expand Down
1 change: 1 addition & 0 deletions src/numba_stats/laplace.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
--------
scipy.stats.laplace: Scipy equivalent.
"""

import numpy as np
from ._util import _jit, _trans, _generate_wrappers, _prange, _rvs_jit, _seed

Expand Down
1 change: 1 addition & 0 deletions src/numba_stats/lognorm.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
--------
scipy.stats.lognorm: Scipy equivalent.
"""

import numpy as np
from . import norm as _norm
from ._util import _jit, _trans, _generate_wrappers, _prange, _seed, _rvs_jit
Expand Down
1 change: 1 addition & 0 deletions src/numba_stats/norm.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
--------
scipy.stats.norm: Scipy equivalent.
"""

import numpy as np
from ._special import ndtri as _ndtri
from ._util import _jit, _trans, _generate_wrappers, _prange, _seed, _rvs_jit
Expand Down
1 change: 1 addition & 0 deletions src/numba_stats/t.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
--------
scipy.stats.t: Scipy equivalent.
"""

import numpy as np
from ._special import stdtr as _stdtr, stdtrit as _stdtrit
from ._util import _jit, _trans, _generate_wrappers, _prange, _seed, _rvs_jit
Expand Down
1 change: 1 addition & 0 deletions src/numba_stats/truncexpon.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
--------
scipy.stats.truncexpon: Scipy equivalent.
"""

import numpy as np
from ._util import _jit, _trans, _generate_wrappers, _prange, _rvs_jit, _seed
from . import expon as _expon
Expand Down
1 change: 1 addition & 0 deletions src/numba_stats/uniform.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
--------
scipy.stats.uniform: Equivalent in Scipy.
"""

from ._util import _jit, _generate_wrappers, _prange, _rvs_jit, _seed
import numpy as np

Expand Down
1 change: 1 addition & 0 deletions src/numba_stats/voigt.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
--------
scipy.special.voigt_profile: Equvialent in Scipy.
"""

from ._special import voigt_profile as _voigt
from ._util import _jit, _generate_wrappers, _prange
import numpy as np
Expand Down
Loading