Add needed items for sdist
Add in some missing bits in wheel/Cargo.toml and some hacks around missing parts in the tar archive
Main items are:
needing to add in chia-client and chia-ssl to wheel/Cargo.toml
needing to remove the ../LICENSE from wheel/Cargo.toml - this resulted in the tar not having the LICENSE file but also pip expecting it, so I just removed it for now.
I noticed the tar was missing the src directory, so I had to manually add in the src directory to the tar archive.
This does make a tar.gz that does build on my riscv machine and also my mac.
Pull Request Test Coverage Report for Build 11263879338
Details
- 0 of 0 changed or added relevant lines in 0 files are covered.
- No unchanged relevant lines lost coverage.
- Overall coverage remained the same at 83.638%
| Totals | |
|---|---|
| Change from base Build 11262793680: | 0.0% |
| Covered Lines: | 12708 |
| Relevant Lines: | 15194 |
💛 - Coveralls
When maturin builds the sdist, it puts in the tar the Cargo.toml from the root workspace and not from the wheel directory. They are listed in the root Cargo as deps and default features.
I see. thanks for the explanation.