Skip to content

Commit

Permalink
Merge pull request #100 from e10v/dev
Browse files Browse the repository at this point in the history
Update versions
  • Loading branch information
e10v authored Dec 1, 2024
2 parents 78e1404 + dd94c9c commit 1db7d4a
Show file tree
Hide file tree
Showing 8 changed files with 136 additions and 136 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Convert coverage report
run: pdm run coverage xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
files: ./coverage.xml
env:
Expand Down
258 changes: 129 additions & 129 deletions pdm.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ select = [
"S", "SIM", "SLF", "SLOT", "T10", "T20", "TCH", "TD", "TID", "TRY", "UP",
"W",
]
ignore = ["ANN101", "ANN102", "ANN401", "PGH003", "SLF001", "TRY003"]
ignore = ["ANN401", "PGH003", "SLF001", "TRY003"]

[tool.ruff.lint.per-file-ignores]
"*/__init__.py" = ["F401"]
Expand Down
2 changes: 1 addition & 1 deletion src/tea_tasting/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
if TYPE_CHECKING:
from typing import Any, Literal

import ibis.expr.types # noqa: TCH004
import ibis.expr.types # noqa: TC004
import numpy.typing as npt


Expand Down
2 changes: 1 addition & 1 deletion tests/metrics/test_mean.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
if TYPE_CHECKING:
from typing import Any

import ibis.expr.types # noqa: TCH004
import ibis.expr.types # noqa: TC004
import pandas as pd


Expand Down
2 changes: 1 addition & 1 deletion tests/metrics/test_proportion.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
if TYPE_CHECKING:
from typing import Any

import ibis.expr.types # noqa: TCH004
import ibis.expr.types # noqa: TC004
import pandas as pd


Expand Down
2 changes: 1 addition & 1 deletion tests/metrics/test_resampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
if TYPE_CHECKING:
from typing import Any

import ibis.expr.types # noqa: TCH004
import ibis.expr.types # noqa: TC004
import numpy.typing as npt
import pandas as pd

Expand Down
2 changes: 1 addition & 1 deletion tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


@pytest.fixture
def reset_config() -> Generator[None, Any, None]: # noqa: PT004
def reset_config() -> Generator[None, Any, None]:
old_config = tea_tasting.config._global_config.copy()

try:
Expand Down

0 comments on commit 1db7d4a

Please sign in to comment.