Skip to content

Commit 1b29abf

Browse files
authored
Upgrade pyo3 to 0.23.4 in test crates (#2435)
1 parent dcf4a82 commit 1b29abf

File tree

22 files changed

+201
-202
lines changed

22 files changed

+201
-202
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,11 @@ jobs:
189189
- run: rustup target add x86_64-unknown-linux-musl
190190
- run: sudo apt-get install musl-tools
191191
- uses: Swatinem/rust-cache@v2
192-
- run: cargo build --target x86_64-unknown-linux-musl
192+
- run: cargo build --target x86_64-unknown-linux-musl --release
193193
- uses: actions/upload-artifact@v4
194194
with:
195195
name: maturin-build
196-
path: target/x86_64-unknown-linux-musl/debug/maturin
196+
path: target/x86_64-unknown-linux-musl/release/maturin
197197

198198
test-windows-cross:
199199
name: Test windows cross
@@ -227,11 +227,10 @@ jobs:
227227
228228
# abi3
229229
bin/maturin build -m test-crates/pyo3-pure/Cargo.toml --target x86_64-pc-windows-gnu
230-
# TODO: timeout
231-
# bin/maturin build -m test-crates/pyo3-pure/Cargo.toml --target x86_64-pc-windows-msvc
230+
bin/maturin build -m test-crates/pyo3-pure/Cargo.toml --target x86_64-pc-windows-msvc
232231
233232
# no-abi3
234-
# bin/maturin build -i python3.12 -m test-crates/pyo3-mixed/Cargo.toml --target x86_64-pc-windows-msvc
233+
bin/maturin build -i python3.12 -m test-crates/pyo3-mixed/Cargo.toml --target x86_64-pc-windows-msvc
235234
236235
test-emscripten:
237236
name: Test Emscripten

src/build_options.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1541,7 +1541,7 @@ mod test {
15411541
let bridge = BridgeModel::BindingsAbi3 {
15421542
bindings: Bindings {
15431543
name: "pyo3".to_string(),
1544-
version: semver::Version::new(0, 23, 3),
1544+
version: semver::Version::new(0, 23, 4),
15451545
},
15461546
major: 3,
15471547
minor: 7,

test-crates/lib_with_disallowed_lib/Cargo.lock

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

test-crates/pyo3-abi3-without-version/Cargo.lock

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

test-crates/pyo3-bin/Cargo.lock

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

test-crates/pyo3-feature/Cargo.lock

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

test-crates/pyo3-mixed-implicit/Cargo.lock

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

test-crates/pyo3-mixed-include-exclude/Cargo.lock

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

0 commit comments

Comments
 (0)