Skip to content

bump version to 1.4.2 #65

bump version to 1.4.2

bump version to 1.4.2 #65

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Setup Conda Environment
uses: conda-incubator/setup-miniconda@v2.2.0
with:
miniforge-variant: Mambaforge
miniforge-version: latest
use-mamba: true
channel-priority: strict
python-version: ${{ matrix.python-version }}
auto-activate-base: false
- name: Install dependencies
shell: bash -l {0}
run: mamba install pytest locket numpy toolz pandas blosc pyzmq pyarrow -c conda-forge
- name: Install
shell: bash -l {0}
run: pip install .
- name: Run Tests
shell: bash -l {0}
run: pytest partd --doctest-modules --verbose
env:
PYTHON_VERSION: ${{ matrix.python-version }}