Skip to content

Commit

Permalink
Improved GitHub Actions CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
vruusmann committed Dec 6, 2024
1 parent 2c0b7ce commit 6f62fac
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,8 @@ jobs:
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'
python: [3.9, '3.10', 3.11, 3.12]
sklearn: [1.0.2, 1.1.3, 1.2.2, 1.3.2, 1.4.2, 1.5.2]

steps:
- uses: actions/checkout@v2
Expand All @@ -33,7 +29,7 @@ jobs:
- run: |
python -m pip install --upgrade pip
pip install nose
pip install scikit-learn==${{ matrix.sklearn }}
pip install --only-binary :all: scikit-learn==${{ matrix.sklearn }}
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- run: |
nosetests

0 comments on commit 6f62fac

Please sign in to comment.