Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python: Switch to maturin for all Python building/development #2345

Merged
merged 3 commits into from
Aug 11, 2023

Commits on Aug 8, 2023

  1. Python: Switch to maturin for all Python building/development

    maturin is a Python build tool (written in Rust),
    that can robustly handle building Python packages with UniFFI bindings.
    
    This gets rid of our highly custom `setup.py` setup,
    streamlines development and building of the Python package
    and ensures consistent generation of Wheel packages for release.
    
    This also combines all Python configuration into a single place:
    a top-level pyproject.toml
    badboy committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    0844912 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Drop support for Python 3.6

    badboy committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    8ff9f37 View commit details
    Browse the repository at this point in the history
  2. Python: Drop minimal requirements.txt

    This breaks with the new setup.
    We're down to only 2 direct dependencies. We're "fine" for now
    badboy committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    a752827 View commit details
    Browse the repository at this point in the history