Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 361 Bytes

CONTRIBUTING.md

File metadata and controls

29 lines (15 loc) · 361 Bytes

Contribute to PyTorch/ORT

Internal instructions for build and upload.

Build

  1. Update version.txt

  2. Install setuptools

  • pip install setuptools
  1. Remove the current package
  • rm dist/*
  1. Build the package
  • python setup.py bdist_wheel

Publish

  1. Install twine
  • pip install twine
  1. Upload to PyPI
  • twine upload dist/*