Skip to content

Commit

Permalink
nixpkgs upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
TyberiusPrime committed Jun 11, 2024
1 parent b0a7448 commit 5903ce5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "Wraps mbf-bam into an mach-nix importable builder";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/22.05";
nixpkgs.url = "github:NixOS/nixpkgs/23.11";
};

outputs = {
Expand Down
9 changes: 9 additions & 0 deletions tests/test_pandas_forwards.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,12 @@ def test_dataframe_subscript():
actual = dp.head(5)["name"].pd
should = mtcars["name"].head(5)
assert_series_equal(actual, should)


def test_T():
df = pd.DataFrame(
{"a": list(range(10)), "bb": list(range(10)), "ccc": list(range(10))}
)
should = df.T
actual = dp(df).T.pd
assert_frame_equal(should, actual)

0 comments on commit 5903ce5

Please sign in to comment.