Skip to content
This repository has been archived by the owner on Jul 6, 2022. It is now read-only.

Latest commit

 

History

History
37 lines (28 loc) · 1.28 KB

RELEASING.md

File metadata and controls

37 lines (28 loc) · 1.28 KB

Release Checklist

  • Create wheels in a freshly cloned repo, replace x.y.z with real version:
cd /tmp
rm -rf ultrajson
git clone https://github.com/ultrajson/ultrajson
cd ultrajson
python3 scripts/build-manylinux.py x.y.z
twine check dist/*
twine upload dist/*
  • Check installation:
pip3 uninstall -y ujson && pip3 install -U ujson
python3 -c "import ujson; print(ujson.__version__)"