Skip to content

multichannel parameter removed from latest scikit-image #3

multichannel parameter removed from latest scikit-image

multichannel parameter removed from latest scikit-image #3

Workflow file for this run

jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest] # Add macOS to the matrix
python-version: [3.10, 3.11, 3.12]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up conda
uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
auto-update-conda: true
environment-file: environment.yml
activate-environment: tools21cm
- name: Install additional dependencies
run: |
conda activate tools21cm
conda install -y pip
pip install .
- name: Run tests
run: |
conda activate tools21cm
pytest