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

DataFusion 31 and Arrow 46 upgrade #540

Merged
merged 1 commit into from
Sep 14, 2023
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/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.71.1
toolchain: stable
components: rustfmt
default: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
# - name: Install Rust
# uses: actions-rs/toolchain@v1
# with:
# toolchain: 1.71.1
# toolchain: stable
# components: rustfmt
# default: true

Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.71.1
toolchain: stable
components: rustfmt
default: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.71.1
toolchain: stable
components: rustfmt
default: true

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: 1.71.1
toolchain: stable
components: rustfmt
target: aarch64-unknown-linux-gnu
default: true
Expand All @@ -44,7 +44,7 @@ jobs:

- uses: PyO3/maturin-action@v1
with:
rust-toolchain: 1.71.1
rust-toolchain: stable
maturin-version: v0.14.15
command: build
args: -m connectorx-python/Cargo.toml -i python --release --manylinux 2_28 --features integrated-auth-gssapi
Expand All @@ -58,7 +58,7 @@ jobs:
# rebuild the wheel to incorporate j4rs dependencies
- uses: PyO3/maturin-action@v1
with:
rust-toolchain: 1.71.1
rust-toolchain: stable
maturin-version: v0.14.15
command: build
args: -m connectorx-python/Cargo.toml -i python --release --manylinux 2_28 --features integrated-auth-gssapi
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: 1.71.1
toolchain: stable
components: rustfmt
default: true

Expand All @@ -117,7 +117,7 @@ jobs:

- uses: PyO3/maturin-action@v1
with:
rust-toolchain: 1.71.1
rust-toolchain: stable
maturin-version: v0.14.15
command: build
args: -m connectorx-python/Cargo.toml -i python --release ${{ matrix.features }}
Expand All @@ -131,7 +131,7 @@ jobs:
# rebuild the wheel to incorporate j4rs dependencies
- uses: PyO3/maturin-action@v1
with:
rust-toolchain: 1.71.1
rust-toolchain: stable
maturin-version: v0.14.15
command: build
args: -m connectorx-python/Cargo.toml -i python --release ${{ matrix.features }}
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: 1.71.1
toolchain: stable
components: rustfmt
target: aarch64-apple-darwin
default: true
Expand All @@ -178,7 +178,7 @@ jobs:

- uses: PyO3/maturin-action@v1
with:
rust-toolchain: 1.71.1
rust-toolchain: stable
maturin-version: v0.14.15
command: build
args: -m connectorx-python/Cargo.toml --target aarch64-apple-darwin -i python --release --features integrated-auth-gssapi
Expand All @@ -192,7 +192,7 @@ jobs:
# rebuild the wheel to incorporate j4rs dependencies
- uses: PyO3/maturin-action@v1
with:
rust-toolchain: 1.71.1
rust-toolchain: stable
maturin-version: v0.14.15
command: build
args: -m connectorx-python/Cargo.toml --target aarch64-apple-darwin -i python --release --features integrated-auth-gssapi
Expand Down
Loading