ragged-buffer 0.4.8

Efficient RaggedBuffer datatype that implements 3D arrays with variable-length 2nd dimension.
Documentation
name: Test

on:
  push:
    branches: [ '*' ]
  pull_request:
    branches: [ main ]

jobs:
  test:

    runs-on: ubuntu-latest 

    name: Test
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: stable
          override: true
      - uses: messense/maturin-action@v1
        with:
          maturin-version: latest
          command: build
          args: --features=python
      - name: Test
        run: |
          python -m pip install --upgrade pip
          pip install target/wheels/ragged_buffer-*.whl
          python tests/test.py