Commits
Click on a commit to change the comparison rangeFix mypy type errors for Python 3.14
- Convert Collection arguments to pd.Index for get_indexer calls
- Use np.asarray with explicit dtype for pairwise_scores calls
- Convert list to pd.Series for DataFrame column assignment
Co-authored-by: dustalov <40397+dustalov@users.noreply.github.com> Improve gradio code to use pandas-idiomatic map operation
Use df["winner"].str.lower().map(WINNERS) instead of creating intermediate list
Co-authored-by: dustalov <40397+dustalov@users.noreply.github.com> Merge branch 'master' into copilot/fix-mypy-tests-python-3-14 Simplify cast to use pd.Index without type parameter
Remove [Any] from cast since pd.Index without type parameter is cleaner and
equally type-safe. Also remove unused Any import.
Co-authored-by: dustalov <40397+dustalov@users.noreply.github.com>