Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
waralexrom committed Aug 7, 2023
1 parent 1581a8d commit 3db81a7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/python_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ jobs:

- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2021-07-04
toolchain: nightly-2023-01-29


- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
- uses: actions/checkout@v2
- name: Setup Rust toolchain
run: |
rustup toolchain install nightly-2021-07-04
rustup default nightly-2021-07-04
rustup toolchain install nightly-2023-01-29
rustup default nightly-2023-01-29
rustup component add rustfmt
- name: Cache Cargo
uses: actions/cache@v2
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
matrix:
arch: [amd64]
rust: [nightly-2022-06-22]
rust: [nightly-2023-01-29]
container:
image: ${{ matrix.arch }}/rust
env:
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
strategy:
matrix:
arch: [amd64]
rust: [nightly-2022-06-22]
rust: [nightly-2023-01-29]
container:
image: ${{ matrix.arch }}/rust
env:
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
strategy:
matrix:
os: [macos-latest]
rust: [nightly-2022-06-22]
rust: [nightly-2023-01-29]
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -230,8 +230,8 @@ jobs:
- uses: actions/checkout@v2
- name: Setup toolchain
run: |
rustup toolchain install nightly-2022-06-22
rustup default nightly-2022-06-22
rustup toolchain install nightly-2023-01-29
rustup default nightly-2023-01-29
rustup component add rustfmt
- name: Run
run: cargo fmt --all -- --check
Expand Down
2 changes: 1 addition & 1 deletion datafusion-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ clap = "2.33"
rustyline = "8.0"
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync"] }
datafusion = { path = "../datafusion" }
arrow = { git = "https://github.com/cube-js/arrow-rs.git", branch = "cube", features = ["prettyprint"] }
arrow = { git = "https://github.com/cube-js/arrow-rs.git", branch = "int96-types", features = ["prettyprint"] }
2 changes: 1 addition & 1 deletion datafusion-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ publish = false


[dev-dependencies]
arrow-flight = { git = "https://github.com/cube-js/arrow-rs.git", branch = "cube" }
arrow-flight = { git = "https://github.com/cube-js/arrow-rs.git", branch = "int96-types" }
datafusion = { path = "../datafusion" }
prost = "0.7"
smallvec = { version = "1.6", features = ["union"] }
Expand Down

0 comments on commit 3db81a7

Please sign in to comment.