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/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
container: ${{ matrix.image }}
# Named rather than left to the toolchain file, which the
# build container does not read.
rust-toolchain: 1.97.1
rust-toolchain: 1.98.0
args: --release --out dist -i /opt/python/cp311-cp311/bin/python
# A shared object cannot have a static C runtime linked into
# it, which is the musl default and a no-op everywhere else.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
container: ${{ matrix.image || 'auto' }}
# Named rather than left to the toolchain file, which the
# build container does not read.
rust-toolchain: 1.97.1
rust-toolchain: 1.98.0
# The interpreter, named, on the rows that build in a
# container. Left to the path everywhere else, where
# setup-python above put the row's interpreter first. An
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "zudb-python"
version = "0.0.1"
edition = "2024"
rust-version = "1.97"
rust-version = "1.98"
license = "Apache-2.0"
repository = "https://github.com/tamnd/zu-python"
authors = ["Tam Nguyen <tamnd87@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# a different build of the same code. Held to the version in
# tamnd/zu's toolchains.toml.
[toolchain]
channel = "1.97.1"
channel = "1.98.0"
components = ["rustfmt", "clippy"]
Loading