From b7e3b68ece1d222e018f868351094908e605c618 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 10 Jun 2024 17:13:58 -0700 Subject: [PATCH] [pre-commit.ci] pre-commit autoupdate (#105) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 24.4.0 → 24.4.2](https://github.com/psf/black/compare/24.4.0...24.4.2) - [github.com/astral-sh/ruff-pre-commit: v0.3.7 → v0.4.8](https://github.com/astral-sh/ruff-pre-commit/compare/v0.3.7...v0.4.8) * Update changelog --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Jayaram Kancherla --- .pre-commit-config.yaml | 4 ++-- CHANGELOG.md | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d7f72c3..6da621e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -26,14 +26,14 @@ repos: # --config, ./pyproject.toml - repo: https://github.com/psf/black - rev: 24.4.0 + rev: 24.4.2 hooks: - id: black language_version: python3 - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.3.7 + rev: v0.4.8 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] diff --git a/CHANGELOG.md b/CHANGELOG.md index a166c1a..16db670 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Version 0.5.11 + +- Methods to flatten a nested `BiocFrame` object. +- Interop with Polars; added methods to coerce `BiocFrame` object to a polars `DataFrame` and vice-versa +- Corce methods especially the integrations with pandas and polars, first flatten the `BiocFrame` before attempting the coersion. + ## Version 0.5.1 - Moved the pandas converter into a `BiocFrame` class method for more accessibility.