Requires-Dist problems when updating "Nine Rules for Writing Python Extensions in Rust" #1588
-
Background: I gave a talk last week at PyData about creating extensions with Rust with maturin. It was based on the "9 rules" article from last year, I updated versions of Maturin, etc in the bed-reader genomics project after the talk. I just noticed, however, that the new *.whl's have bed_reader_0.2.33.dist-into/METADATA without "Requires-Dist". My Cargo.toml and pyproject.toml are in the same (top-level) folder of my project. The pyproject.toml says among other things:
Any idea how it lost the "requires" info? If/when we figure it out, I'll update the article (and the project) to help others. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
It looks like I need to add:
instead of |
Beta Was this translation helpful? Give feedback.
-
Everything seems to be working now. Thanks! |
Beta Was this translation helpful? Give feedback.
It looks like I need to add:
instead of
requires-dist
. Is that right? Iscargo-extra-args
still needed?