Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Data-Centric-AI-Community/fg-data-profiling
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.16.0
Choose a base ref
...
head repository: Data-Centric-AI-Community/fg-data-profiling
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.16.1
Choose a head ref
  • 3 commits
  • 10 files changed
  • 3 contributors

Commits on Mar 25, 2025

  1. fix: Support Pandas future.infer_string=True in report generation (#1674

    )
    
    * fix: Support Pandas future.infer_string=True in report generation
    
    Previously, report generation encountered issues when
    `future.infer_string=True` was set. This resulted in multiple warnings
    ("FutureWarning: Dtype inference on a pandas object is deprecated") and
    failures when string columns contained only empty strings
    ("AttributeError: 'StringDtype' object has no attribute
    'pyarrow_dtype'").
    This change resolves the issue by explicitly setting the dtype to
    "object" for the relevant operations.
    
    * refactor: Refactor pandas option usage for backward compatibility
    
    - Introduce the `optional_option_context` helper to replace the direct
      use of `pd.option_context("future.no_silent_downcasting", True)`,
      ensuring compatibility with older pandas versions that lack this
      option.
    - Update the `future.infer_string` test to run only on pandas >= 2.1,
      where it is applicable.
    
    * Add type annotations for optional_option_context
    
    * Make the silent downcasting explicit
    ssiegel authored Mar 25, 2025
    Configuration menu
    Copy the full SHA
    45c47c7 View commit details
    Browse the repository at this point in the history
  2. fix: add html metrics support for compare (#1744)

    * fix: add html metrics support for compare
    
    * fix: add html metrics support for compare
    
    * fix(linting): code formatting
    
    * chore: fix test to include request header
    
    * fix(linting): code formatting
    
    * chore: add unit tests for the compat file
    
    * fix(linting): code formatting
    
    ---------
    
    Co-authored-by: Azory YData Bot <azory@ydata.ai>
    fabclmnt and azory-ydata authored Mar 25, 2025
    Configuration menu
    Copy the full SHA
    15494dd View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2025

  1. chore: add more unit tests for better code coverage (#1745)

    * chore: add more unit tests for better code coverage
    
    * chore: remove unused code from tests
    
    * fix(linting): code formatting
    
    * chore: fix whitespaces
    
    * chore: test no longer valid
    
    * fix(linting): code formatting
    
    ---------
    
    Co-authored-by: Azory YData Bot <azory@ydata.ai>
    fabclmnt and azory-ydata authored Mar 26, 2025
    Configuration menu
    Copy the full SHA
    c3ce66c View commit details
    Browse the repository at this point in the history
Loading