Environment Variables
Maturin reads a number of environment variables which you can use to configure the build process. Here is a list of all environment variables that are read by maturin:
Cargo environment variables
See environment variables Cargo reads
Python environment variables
VIRTUAL_ENV: Path to a Python virtual environmentCONDA_PREFIX: Path to a conda environment_PYTHON_SYSCONFIGDATA_NAME: Name of asysconfigdata*.pyfileMATURIN_PEP517_USE_BASE_PYTHON: Use base Python executable instead of venv Python executable in PEP 517 build to avoid unnecessary rebuilds, should not be set when the sdist build requires packages installed in venv.
PEP 517 build environment variables
MATURIN_PEP517_ARGS: Extra arguments passed tomaturinduring PEP 517 builds (e.g.pip install .). The value is parsed using shell-style splitting. For example:MATURIN_PEP517_ARGS="--features foo --profile release"MATURIN_NO_INSTALL_RUST: If set, do not attempt to auto-install Rust viapuccinialinwhencargois not found during PEP 517 builds.
pip config-settings
You can also pass extra maturin arguments via pip’s --config-settings flag:
pip install . --config-settings="build-args=--features foo"
# or with the namespaced key
pip install . --config-settings="maturin.build-args=--features foo"
Config-settings take priority over MATURIN_PEP517_ARGS; the environment variable is only used when no build-args config-setting is provided.
Upload environment variables
MATURIN_PYPI_TOKEN: PyPI token for uploading wheels (token-based authentication)MATURIN_REPOSITORY: The repository (package index) to upload the package to, defaults topypiMATURIN_REPOSITORY_URL: The URL of the registry where the wheels are uploaded to, overridesMATURIN_REPOSITORYMATURIN_USERNAME: Username for pypi or your custom registryMATURIN_PASSWORD: Password for pypi or your custom registryMATURIN_NON_INTERACTIVE: Do not interactively prompt for username/password if the required credentials are missing
pyo3 environment variables
PYO3_CROSS_PYTHON_VERSION: Python version to use for cross compilationPYO3_CROSS_LIB_DIR: This variable can be set to the directory containing the target’s libpython DSO and the associated_sysconfigdata*.pyfile for Unix-like targets, or the Python DLL import libraries for the Windows target.PYO3_CONFIG_FILE: Path to a pyo3 config file
Networking environment variables
HTTP_PROXY/HTTPS_PROXY: Proxy to use for HTTP/HTTPS requestsMATURIN_CA_BUNDLE/REQUESTS_CA_BUNDLE/CURL_CA_BUNDLE: Path to a CA bundle to use for HTTPS requests
Other environment variables
MACOSX_DEPLOYMENT_TARGET: The minimum macOS version to targetIPHONEOS_DEPLOYMENT_TARGET: The minimum iOS version to targetSOURCE_DATE_EPOCH: The time to use for the timestamp in the wheel metadataMATURIN_EMSCRIPTEN_VERSION: The version of emscripten to use for emscripten buildsMATURIN_STRIP: Strip the library for minimum file sizeMATURIN_NO_MISSING_BUILD_BACKEND_WARNING: Suppress missing build backend warningMATURIN_USE_XWIN: Set to1to force to usexwinfor cross compiling even on Windows that supports native compilationANDROID_API_LEVEL: The Android API level to target when cross compiling for AndroidTARGET_SYSROOT: The sysroot to use for auditwheel wheel when cross compilingARCHFLAGS: Flags to control the architecture of the build on macOS, for example you can useARCHFLAGS="-arch x86_64 -arch arm64"to build universal2 wheels