Skip to content
Luka Kacil edited this page May 27, 2022 · 3 revisions

Description

This is a slightly modified version to suit our purposes. It should still follow the main repo. When updating the code in here you should:

Install

Make sure you have Protobuf compiler installed (protoc).

$ virtualenv --python=python3.8 virtualenv
$ source virtualenv/bin/activate
$ python setup.py build

Publishing a new release

After changes are made and you're ready to create a new release:

  1. Make sure you have wheel package installed: $ pip install wheel
  2. Edit setup.py and bump up the last digit (e.g. 0.4.4.0 - 0.4.4.1). We still follow the official versioning (which is X.X.X) by adding another digit at the end (which we increase).
  3. Run python setup.py bdist_wheel
  4. Create a release and upload the .whl file you have just built.
Clone this wiki locally