Skip to content

Commit bd99a1a

Browse files
authored
Merge branch 'pyjanitor-devs:dev' into ci/testing-env
2 parents 4b1e2e9 + f0c7906 commit bd99a1a

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
- [ENH] The parameter `column_name` of `change_type` totally supports inputing multi-column now. #1163 @Zeroto521
2828
- [ENH] Fix error when `sort_by_appearance=True` is combined with `dropna=True`. Issue #1168 @samukweku
2929
- [ENH] Add explicit default parameter to `case_when` function. Issue #1159 @samukweku
30-
30+
- [BUG] pandas 1.5.x `_MergeOperation` doesn't have `copy` keyword anymore. Issue #1174 @Zeroto521
3131

3232
## [v0.23.1] - 2022-05-03
3333

janitor/functions/conditional_join.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,6 @@ def _multiple_conditional_join_eq(
902902
left_on=left_on,
903903
right_on=right_on,
904904
sort=False,
905-
copy=False,
906905
)._get_join_indexers()
907906

908907
if not left_index.size:

tests/functions/test_case_when.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def test_case_when_default_array(df):
175175
)
176176
expected = np.where(df.numbers > 1, df.numbers + 10, default)
177177
expected = df.assign(bleh=expected)
178-
assert_frame_equal(result, expected)
178+
assert_frame_equal(result, expected, check_dtype=False)
179179

180180

181181
@given(df=categoricaldf_strategy())

0 commit comments

Comments
 (0)