-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch main into colin/swordfish-outer-join
- Loading branch information
Showing
395 changed files
with
7,449 additions
and
4,581 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Bug report | ||
description: Create a report to help us improve Daft | ||
labels: [bug, needs triage] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: Describe the bug. | ||
placeholder: > | ||
A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: To Reproduce | ||
placeholder: > | ||
Steps to reproduce the behavior: | ||
- type: textarea | ||
attributes: | ||
label: Expected behavior | ||
placeholder: > | ||
A clear and concise description of what you expected to happen. | ||
- type: dropdown | ||
id: component | ||
attributes: | ||
label: Component(s) | ||
multiple: true | ||
options: | ||
- Expressions | ||
- SQL | ||
- Python Runner | ||
- Ray Runner | ||
- Parquet | ||
- CSV | ||
- Continuous Integration | ||
- Developer Tools | ||
- Documentation | ||
- Other | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
placeholder: > | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
fetch-depth: 0 | ||
|
||
- name: Install uv | ||
uses: astral-sh/setup-uv@v2 | ||
uses: astral-sh/setup-uv@v3 | ||
- name: Set up Python ${{ env.PYTHON_VERSION }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
|
@@ -103,7 +103,7 @@ jobs: | |
if: runner.os == 'macos' | ||
|
||
- name: Install uv | ||
uses: astral-sh/setup-uv@v2 | ||
uses: astral-sh/setup-uv@v3 | ||
- name: Set up Python ${{ env.PYTHON_VERSION }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
|
@@ -127,7 +127,7 @@ jobs: | |
role-to-assume: ${{ secrets.ACTIONS_AWS_ROLE_ARN }} | ||
role-session-name: DaftPythonPackageGitHubWorkflow | ||
- name: Spin up IO services | ||
uses: isbang/[email protected].0 | ||
uses: isbang/[email protected].2 | ||
with: | ||
compose-file: ./tests/integration/io/docker-compose/docker-compose.yml | ||
down-flags: --volumes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -330,7 +330,7 @@ jobs: | |
mkdir -p /tmp/daft-integration-testing/nginx | ||
chmod +rw /tmp/daft-integration-testing/nginx | ||
- name: Spin up IO services | ||
uses: isbang/[email protected].0 | ||
uses: isbang/[email protected].2 | ||
with: | ||
compose-file: ./tests/integration/io/docker-compose/docker-compose.yml | ||
down-flags: --volumes | ||
|
@@ -427,7 +427,7 @@ jobs: | |
# workload_identity_provider: ${{ secrets.ACTIONS_GCP_WORKLOAD_IDENTITY_PROVIDER }} | ||
# service_account: ${{ secrets.ACTIONS_GCP_SERVICE_ACCOUNT }} | ||
- name: Spin up IO services | ||
uses: isbang/[email protected].0 | ||
uses: isbang/[email protected].2 | ||
with: | ||
compose-file: ./tests/integration/io/docker-compose/docker-compose.yml | ||
down-flags: --volumes | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
extend = "../.ruff.toml" | ||
|
||
[lint] | ||
extend-select = [ | ||
"TID253", # banned-module-level-imports, derived from flake8-tidy-imports | ||
"TCH" # flake8-type-checking | ||
] | ||
|
||
[lint.flake8-tidy-imports] | ||
# Ban certain modules from being imported at module level, instead requiring | ||
# that they're imported lazily (e.g., within a function definition, | ||
# with daft.lazy_import.LazyImport, or with TYPE_CHECKING). | ||
banned-module-level-imports = ["daft.unity_catalog", "fsspec", "numpy", "pandas", "PIL", "pyarrow", "ray", "xml"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.