Skip to content

Fix conda builds defaulting to python 3.12 #224

Fix conda builds defaulting to python 3.12

Fix conda builds defaulting to python 3.12 #224

Workflow file for this run

name: MacOS Conda
on:
pull_request:
branches:
- master
- dev
push:
branches: [ master ]
jobs:
build-macos-conda:
runs-on: macos-latest
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: '3.10'
mamba-version: "*"
channels: conda-forge,defaults
channel-priority: true
activate-environment: mescore
environment-file: environment.yml
- name: install mesmerize-core
run: |
mamba activate mescore
caimanmanager install
pip install .
- name: Test with pytest
run: |
mamba install pytest
DOWNLOAD_GROUND_TRUTHS=1 pytest -s .