Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

How to Manually Deploy SDK to Pypi

nh916 edited this page Apr 8, 2023 · 2 revisions
  1. Update ‘version’ for SDK and api
    1. in setup.cfg update version to whatever the new version we want
  2. Merge develop branch into master branch on GitHub
  3. Deploy new release to GitHub
  4. Clone repo
    1. git clone` CRIPT SDK Repository
  5. Checkout to master branch
    1. git checkout master
  6. Install dependencies to build and to push to Pypi
    1. pip install build
    2. pip install twine
  7. Build the package
    1. Python -m build
  8. Deploy with twine
    1. twine upload dist/*
Clone this wiki locally