Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build: Bump getdaft from 0.4.4 to 0.4.5 #1739

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 27, 2025

Bumps getdaft from 0.4.4 to 0.4.5.

Release notes

Sourced from getdaft's releases.

v0.4.5

What's Changed 🚀

💥 Breaking Changes

✨ Features

🐛 Bug Fixes

🚀 Performance

♻️ Refactor

📖 Documentation

🔧 Maintenance

... (truncated)

Commits
  • d468589 feat(connect): daft.pyspark module (#3861)
  • c3591a2 fix: sql round without precision (#3863)
  • af2a841 feat: Emit children of join before shuffle + add stats to explain analyze (#3...
  • 6d92c6f fix: pypi publish workflow (#3862)
  • f782869 feat: Stageify plan on shuffle boundaries (#3781)
  • 0080a7e feat(sql): adds session sql for leveraging attached catalogs (#3860)
  • 3a3c66f docs: respect daft analytics env var (#3856)
  • 190c75a docs: Update configuration docs to show set_runner_native (#3833)
  • 5db17c2 feat(catalog): Cutover deprecated APIs to use session, catalog, table abstrac...
  • fc97a92 fix: build wheel Github action inputs (#3858)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [getdaft](https://github.com/Eventual-Inc/Daft) from 0.4.4 to 0.4.5.
- [Release notes](https://github.com/Eventual-Inc/Daft/releases)
- [Commits](Eventual-Inc/Daft@v0.4.4...v0.4.5)

---
updated-dependencies:
- dependency-name: getdaft
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 27, 2025
@kevinjqliu
Copy link
Contributor

=================================== FAILURES ===================================
_____________________ test_daft_nan[session_catalog_hive] ______________________

    def dashboard_module():
        try:
>           import daft_dashboard
E           ModuleNotFoundError: No module named 'daft_dashboard'

../../../.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.11/lib/python3.11/site-packages/daft/dashboard.py:17: ModuleNotFoundError

During handling of the above exception, another exception occurred:

catalog = local (<class 'pyiceberg.catalog.hive.HiveCatalog'>)

    @pytest.mark.integration
    @pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog_hive"), pytest.lazy_fixture("session_catalog")])
    def test_daft_nan(catalog: Catalog) -> None:
        import daft
    
        daft.context.set_runner_native()
        table_test_null_nan_rewritten = catalog.load_table("default.test_null_nan_rewritten")
        df = table_test_null_nan_rewritten.to_daft()
>       assert df.count_rows() == 3

tests/integration/test_reads.py:306: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
../../../.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.11/lib/python3.11/site-packages/daft/api_annotations.py:26: in _wrap
    return timed_method(*args, **kwargs)
../../../.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.11/lib/python3.11/site-packages/daft/analytics.py:199: in tracked_method
    result = method(*args, **kwargs)
../../../.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.11/lib/python3.11/site-packages/daft/dataframe/dataframe.py:1861: in count_rows
    return count_df.to_pydict()["count"][0]
../../../.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.11/lib/python3.11/site-packages/daft/api_annotations.py:26: in _wrap
    return timed_method(*args, **kwargs)
../../../.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.11/lib/python3.11/site-packages/daft/analytics.py:199: in tracked_method
    result = method(*args, **kwargs)
../../../.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.11/lib/python3.11/site-packages/daft/dataframe/dataframe.py:3043: in to_pydict
    self.collect()
../../../.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.11/lib/python3.11/site-packages/daft/api_annotations.py:26: in _wrap
    return timed_method(*args, **kwargs)
../../../.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.11/lib/python3.11/site-packages/daft/analytics.py:199: in tracked_method
    result = method(*args, **kwargs)
../../../.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.11/lib/python3.11/site-packages/daft/dataframe/dataframe.py:2871: in collect
    self._broadcast_query_plan()
../../../.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.11/lib/python3.11/site-packages/daft/dataframe/dataframe.py:166: in _broadcast_query_plan
    if not dashboard._should_run():
../../../.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.11/lib/python3.11/site-packages/daft/dashboard.py:34: in _should_run
    dashboard = dashboard_module()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def dashboard_module():
        try:
            import daft_dashboard
        except ImportError:
>           warnings.warn(
                "Unable to import Daft's dashboard features"
                "Consider re-installing Daft with the 'dashboard' feature installed, e.g.:"
                'pip install "getdaft[dashboard]"'
            )
E           UserWarning: Unable to import Daft's dashboard featuresConsider re-installing Daft with the 'dashboard' feature installed, e.g.:pip install "getdaft[dashboard]"

../../../.cache/pypoetry/virtualenvs/pyiceberg-bKWKvoA4-py3.11/lib/python3.11/site-packages/daft/dashboard.py:19: UserWarning

Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 3, 2025

Superseded by #1758.

@dependabot dependabot bot closed this Mar 3, 2025
@dependabot dependabot bot deleted the dependabot/pip/getdaft-0.4.5 branch March 3, 2025 22:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant