Skip to content

adding force_int_remainder_cols for sklearn 1.5 #134

adding force_int_remainder_cols for sklearn 1.5

adding force_int_remainder_cols for sklearn 1.5 #134

Workflow file for this run

name: Build docs
on:
push:
branches:
- main
pull_request:
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install -e ."[github]"
pip install numpydoc sphinx sphinx_gallery sphinxcontrib-mermaid
- name: Build documents
run: |
cd doc && make html && cd ..
touch doc/_build/html/.nojekyll
- name: Publish to gh-pages if tagged
if: startsWith(github.ref, 'refs/tags')
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: doc/_build/html