Chia-Network/clvm

Sdist isn't getting published

Opened this issue · 0 comments

In our workflow, we are using pep517.build (which is deprecated) to build the wheel:

- name: Install pep517
run: >-
python -m
pip install
pep517
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
pep517.build
--binary
--out-dir dist/
.

We aren't building the sdist.
If we were to use pip install build, and then
python -m build --outdir dist/ ., this should provide the sdist and the wheel to publish to pypi.