Skip to content

Bump scikit-learn from 1.1.1 to 1.5.0 #79

Bump scikit-learn from 1.1.1 to 1.5.0

Bump scikit-learn from 1.1.1 to 1.5.0 #79

Workflow file for this run

name: Check Dependencies
on:
pull_request:
jobs:
install:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tools
run: python -m pip install --upgrade pip setuptools wheel
- name: Build
run: python setup.py build
- name: Install all dependencies
run: pip install . && pip install -e '.[tests]'
- name: Run all unit tests
run: python -m unittest Hummingbird/test/test_*.py