Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
python-version: ["3.9", "3.10", "3.11", "3.12"]
exclude:
# Python 3.11 build on macOS times out for some reason
# xref https://github.com/coiled/dask-snowflake/pull/56
# xref https://github.com/dask-contrib/dask-snowflake/pull/56
- os: macos-latest
python-version: "3.11"
steps:
Expand Down
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
# Dask-Snowflake

[![Tests](https://github.com/coiled/dask-snowflake/actions/workflows/tests.yml/badge.svg)](https://github.com/coiled/dask-snowflake/actions/workflows/tests.yml)
[![Linting](https://github.com/coiled/dask-snowflake/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/coiled/dask-snowflake/actions/workflows/pre-commit.yml)

This connector is in an early experimental/testing phase.

[Reach out to us](https://coiled.io/contact-us/) if you are interested in trying
it out!
[![Tests](https://github.com/dask-contrib/dask-snowflake/actions/workflows/tests.yml/badge.svg)](https://github.com/dask-contrib/dask-snowflake/actions/workflows/tests.yml)
[![Linting](https://github.com/dask-contrib/dask-snowflake/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/dask-contrib/dask-snowflake/actions/workflows/pre-commit.yml)

## Installation

Expand Down
4 changes: 2 additions & 2 deletions dask_snowflake/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def read_snowflake(

# Disable `log_imported_packages_in_telemetry` as a temporary workaround for
# https://github.com/snowflakedb/snowflake-connector-python/issues/1648.
# Also xref https://github.com/coiled/dask-snowflake/issues/51.
# Also xref https://github.com/dask-contrib/dask-snowflake/issues/51.
if connection_kwargs.get("log_imported_packages_in_telemetry"):
raise ValueError(
"Using `log_imported_packages_in_telemetry=True` when creating a "
Expand All @@ -279,7 +279,7 @@ def read_snowflake(

batch_types = set(type(b) for b in batches)
if len(batch_types) > 1 or next(iter(batch_types)) is not ArrowResultBatch:
# See https://github.com/coiled/dask-snowflake/issues/21
# See https://github.com/dask-contrib/dask-snowflake/issues/21
raise RuntimeError(
f"Currently only `ArrowResultBatch` are supported, but received batch types {batch_types}"
)
Expand Down
Loading