Skip to content

Fix compatibility with Python >= 3.12 #87

Fix compatibility with Python >= 3.12

Fix compatibility with Python >= 3.12 #87

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI-minimal
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.6"]
steps:
- uses: actions/checkout@v4
- name: Setup Conda Environment
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-variant: Mambaforge
miniforge-version: latest
python-version: ${{ matrix.python-version }}
use-mamba: true
- name: Install dependencies
shell: bash -l {0}
run: |
mamba install typing_extensions!=4.2 pytest
mamba install pip numpy==1.17 scipy==1.0 numba==0.53
- name: Install
shell: bash -l {0}
run: |
python -m pip install -e .[tests]
- name: Test
shell: bash -l {0}
run: |
python -m pytest tests