Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 603 Bytes

File metadata and controls

26 lines (18 loc) · 603 Bytes

Compiling and packaging the final library

After having made all the changes, to make a new release the following procedure is to be adopted

  • Update pybinwalk/version.py with the latest version number
  • Update pyproject.toml with the latest version number
  • Update rust/Cargo.toml with the latest version number

Create the pyo3 bindings again using (from the root directory):

make maturin-develop

Create the python + rust wheel using:

rm -rf dist
maturin build --release --out dist

Then upload it to pypi using twine.

twine upload dist/*