Skip to content

Updated JPMML-SkLearn dependency #178

Updated JPMML-SkLearn dependency

Updated JPMML-SkLearn dependency #178

Workflow file for this run

name: python
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: [3.8, 3.9, '3.10']
sklearn: [1.0.2, 1.1.3, 1.2.2, 1.3.2, '1.4.0']
exclude:
- python: 3.8
sklearn: '1.4.0'
- python: '3.10'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- run: |
python -m pip install --upgrade pip
pip install nose
pip install scikit-learn==${{ matrix.sklearn }}
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- run: |
nosetests