pyo3 0.8.2

Bindings to Python interpreter
Documentation
#!/bin/bash
set -ex

# run `cargo test` only if testing against cpython.
if ! [[ $FEATURES == *"pypy"* ]]; then
  cargo test --features "$FEATURES num-bigint num-complex"
  ( cd pyo3-derive-backend; cargo test )
else
  # check that pypy at least builds
  PYTHON_SYS_EXECUTABLE="/opt/anaconda/envs/pypy3/bin/pypy3" cargo build;
fi

if [ "$TRAVIS_JOB_NAME" = "Minimum nightly" ]; then
    pip install --pre black==19.3b0
    make lint
fi

for example_dir in examples/*; do
    cd $example_dir
    if [[ $FEATURES == *"pypy"* ]]; then
        tox -c "tox.ini" -e pypy3
    else
        tox -c "tox.ini" -e py
    fi
    cd -
done