Skip to content

Commit 03f4d6c

Browse files
authored
Merge branch 'main' into feature/implement-repartition-node-for-insert-into-datafusion
2 parents 4e935d5 + 7240ba8 commit 03f4d6c

File tree

8 files changed

+102
-114
lines changed

8 files changed

+102
-114
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ jobs:
137137
- name: Test
138138
run: cargo test --no-fail-fast --all-targets --all-features --workspace
139139

140-
- name: Async-std Test
141-
run: cargo test --no-fail-fast --all-targets --no-default-features --features "async-std" --features "storage-all" --workspace
140+
- name: Smol Test
141+
run: cargo test --no-fail-fast --all-targets --no-default-features --features "smol" --features "storage-all" --workspace
142142

143143
- name: Doc Test
144144
run: cargo test --no-fail-fast --doc --all-features --workspace

Cargo.lock

Lines changed: 74 additions & 86 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ arrow-schema = { version = "55" }
5151
arrow-select = { version = "55" }
5252
arrow-string = { version = "55" }
5353
as-any = "0.3.2"
54-
async-std = "1.12"
5554
async-trait = "0.1.88"
5655
aws-config = "1.6.1"
5756
aws-sdk-glue = "1.39"
@@ -110,6 +109,7 @@ serde_derive = "1.0.210"
110109
serde_json = "1.0.138"
111110
serde_repr = "0.1.16"
112111
serde_with = "3.4"
112+
smol = "2.0.2"
113113
sqllogictest = "0.28"
114114
stacker = "0.1.20"
115115
strum = "0.27"

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ python-source = "python"
4444
ignore = ["F403", "F405"]
4545

4646
[tool.hatch.envs.dev]
47-
dependencies = ["maturin>=1.0,<2.0", "pytest>=8.3.2", "pyarrow>=17.0.0", "datafusion>=45", "pyiceberg[sql-sqlite]>=0.9.1"]
47+
dependencies = ["maturin>=1.0,<2.0", "pytest>=8.3.2", "pyarrow==16.*", "datafusion==47.*", "pyiceberg[sql-sqlite]>=0.9.1"]
4848

4949
[tool.hatch.envs.dev.scripts]
5050
build = "maturin build --out dist --sdist"

0 commit comments

Comments
 (0)