Open hugovk opened 3 years ago
For the next release, please could you also release a wheel as well as an sdist?
Wheels are the new standard for Python distribution, more info: https://pythonwheels.com/
It's easy to do.
First install build:
build
python -m pip install build
Then run:
python -m build
And then upload both files to PyPI:
$ ls -l dist total 32 -rw-r--r-- 1 hugo wheel 6500 11 Oct 16:46 tinyrecord-0.2.1-py3-none-any.whl -rw-r--r-- 1 hugo wheel 8165 11 Oct 16:46 tinyrecord-0.2.1.tar.gz
Thank you!
For the next release, please could you also release a wheel as well as an sdist?
Wheels are the new standard for Python distribution, more info: https://pythonwheels.com/
It's easy to do.
First install
build
:Then run:
And then upload both files to PyPI:
Thank you!