Skip to content

Commit

Permalink
cargo update, rustup
Browse files Browse the repository at this point in the history
  • Loading branch information
ijl committed Jun 1, 2023
1 parent dcab26b commit e2180eb
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 28 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ jobs:
options: --user 0
steps:
- run: yum install -y clang lld
- run: curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly-2023-05-07 --profile minimal -y
- run: rustup component add rust-src --toolchain nightly-2023-05-07-x86_64-unknown-linux-gnu
- run: curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly-2023-05-31 --profile minimal -y
- run: rustup component add rust-src --toolchain nightly-2023-05-31-x86_64-unknown-linux-gnu
- uses: actions/checkout@v3

- name: build-std
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
RUSTFLAGS: "-C target-feature=-crt-static"
CARGO_UNSTABLE_SPARSE_REGISTRY: "true"
with:
rust-toolchain: nightly-2023-05-07
rust-toolchain: nightly-2023-05-31
rustup-components: rust-src
target: ${{ matrix.platform.target }}
manylinux: musllinux_1_1
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
CARGO_FEATURE_YYJSON: "1"
with:
target: ${{ matrix.target.target }}
rust-toolchain: nightly-2023-05-07
rust-toolchain: nightly-2023-05-31
rustup-components: rust-src
manylinux: auto
args: --release --strip --out=dist -i python${{ matrix.python.version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/next.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
image: registry.hub.docker.com/library/python:3.12-rc-bullseye
options: --user 0
steps:
- run: curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly-2023-05-07 --profile minimal -y
- run: curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly-2023-05-31 --profile minimal -y
- run: python3 -m pip install --user --upgrade pip "maturin>=1,<2" wheel
- uses: actions/checkout@v3

Expand Down
34 changes: 15 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ encoding_rs = { version = "0.8", default_features = false }
itoa = { version = "1", default_features = false }
itoap = { version = "1", features = ["std", "simd"] }
once_cell = { version = "1", default_features = false, features = ["race"] }
pyo3-ffi = { version = "^0.18.3", default_features = false, features = ["extension-module"]}
pyo3-ffi = { version = "0.19", default_features = false, features = ["extension-module"]}
ryu = { version = "1", default_features = false }
serde = { version = "1", default_features = false }
serde_json = { version = "1", default_features = false, features = ["std", "float_roundtrip"] }
Expand All @@ -63,7 +63,7 @@ smallvec = { version = "^1.10", default_features = false, features = ["union", "

[build-dependencies]
cc = { version = "1" }
pyo3-build-config = { version = "^0.18.3" }
pyo3-build-config = { version = "0.19" }
version_check = { version = "0.9" }

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1195,7 +1195,7 @@ It benefits from also having a C build environment to compile a faster
deserialization backend. See this project's `manylinux_2_28` builds for an
example using clang and LTO.

The project's own CI tests against `nightly-2023-05-07` and stable 1.60. It
The project's own CI tests against `nightly-2023-05-31` and stable 1.60. It
is prudent to pin the nightly version because that channel can introduce
breaking changes.

Expand Down
2 changes: 1 addition & 1 deletion ci/azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variables:
toolchain: nightly-2023-05-07
toolchain: nightly-2023-05-31

jobs:

Expand Down

0 comments on commit e2180eb

Please sign in to comment.