Skip to content

Commit 31eb4dc

Browse files
committed
Fix tests
1 parent 20679c7 commit 31eb4dc

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,9 @@ jobs:
2929
**/pyproject.toml
3030
- name: Install dependencies
3131
run: uv sync --all-extras
32-
# NumPy 2.0 is not available for Python 3.8 and older versions, which leads to broken tests
33-
- name: Lint with Mypy (Python 3.8)
34-
run: uv run mypy crowdkit
35-
if: matrix.python-version == '3.8'
3632
- name: Lint with Mypy
3733
run: uv run mypy crowdkit tests
38-
if: matrix.python-version != '3.8'
34+
if: matrix.python-version != '3.8' && matrix.python-version != '3.9'
3935
# pyupgrade is incompatible with Python 3.8 and older versions
4036
- name: Pre-Commit Check
4137
uses: pre-commit/[email protected]

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ Below is the list of currently implemented methods, including the already availa
119119
| [Bradley-Terry](https://toloka.ai/docs/crowd-kit/reference/crowdkit.aggregation.pairwise.bradley_terry.BradleyTerry) ||
120120
| [Noisy Bradley-Terry](https://toloka.ai/docs/crowd-kit/reference/crowdkit.aggregation.pairwise.noisy_bt.NoisyBradleyTerry) ||
121121

122+
> [!TIP]
123+
> Consider using the more modern [Evalica](https://github.com/dustalov/evalica) library to aggregate pairwise comparisons.
124+
122125
### Learning from Crowds
123126

124127
|Method|Status|

0 commit comments

Comments
 (0)