Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix test
  • Loading branch information
= committed Dec 30, 2024
commit 27fbc0a1f5fcdb6d409700defb649b5c69d88b75
1 change: 1 addition & 0 deletions ci/deps/actions-310-minimum_versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
name: pandas-dev
channels:
- conda-forge
- bodo.ai
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you have plans to package Bodo for conda-forge? Is there a reason not to? I think it'd be better for users and our CI if we could simply use conda-forge.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, we currently have an in progress PR here: conda-forge/staged-recipes#28648

dependencies:
- python=3.10

Expand Down
2 changes: 1 addition & 1 deletion pandas/tests/apply/test_bodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_bodo_vs_python_str_apply(axis):

func = "mean"
axis = 1
result = df.apply(func, axis)
result = df.apply(func, axis, engine="bodo")
expected = df.apply(func, axis)

tm.assert_series_equal(result, expected, check_series_type=False)
Expand Down
Loading