-
Notifications
You must be signed in to change notification settings - Fork 783
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
0.20 does no longer build with manylinux2014 #3509
Comments
I have the same problem on |
I'm using |
Quite possibly, yes. You could try build against that git branch (or alternatively wait for that to be merged and released). |
Can confirm, I'm also using pyo3-log and have these in my Cargo.lock: [[package]]
name = "pyo3"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35100f9347670a566a67aa623369293703322bb9db77d99d7df7313b575ae0c8"
dependencies = [
"cfg-if",
"libc",
"parking_lot 0.11.2",
"pyo3-build-config 0.14.5",
]
[[package]]
name = "pyo3"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04e8453b658fe480c3e70c8ed4e3d3ec33eb74988bd186561b0cc66b85c3bc4b"
dependencies = [
"cfg-if",
"indoc",
"libc",
"memoffset",
"parking_lot 0.12.1",
"pyo3-build-config 0.20.0",
"pyo3-ffi",
"pyo3-macros",
"unindent",
] |
I'll close this then, as it's not actually a bug in |
Yup, once I added this to my [patch.crates-io]
pyo3-log = { git = "https://github.com/a1phyr/pyo3-log.git", branch = "pyo3_0.20" } |
Great! I wonder if |
Bug Description
Since the release of 0.20 Pyo3 does no longer link on manylinux2014, which is the default Linux distribution wheel image used by
cibuildwheel
.Steps to Reproduce
setuptools-rust
cibuildwheel
:Backtrace
(source: https://github.com/SkyTemple/skytemple-rust/actions/runs/6513175923/job/17692267221)
Your operating system and version
CentOS 7 (manylinux2014)
Your Python version (
python --version
)3.7-3.12
Your Rust version (
rustc --version
)1.73.0
Your PyO3 version
0.20.0
How did you install python? Did you use a virtualenv?
see above
Additional Info
No response
The text was updated successfully, but these errors were encountered: