Merge branch 'devel' of github.com:mirkobunse QuaPy into mirkobunse-devel

This commit is contained in:
Alejandro Moreo Fernandez 2024-09-17 10:12:17 +02:00
commit 1f1757f0ee
1 changed files with 12 additions and 10 deletions

View File

@ -20,9 +20,9 @@ jobs:
env: env:
QUAPY_TESTS_OMIT_LARGE_DATASETS: True QUAPY_TESTS_OMIT_LARGE_DATASETS: True
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4 uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
@ -38,15 +38,17 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master' if: github.ref == 'refs/heads/master'
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v4
- name: Build documentation - name: Set up Python
uses: ammaraskar/sphinx-action@master uses: actions/setup-python@v5
with: with:
pre-build-command: | python-version: 3.11
apt-get --allow-releaseinfo-change update -y && apt-get install -y git && git --version - name: Install dependencies
python -m pip install --upgrade pip setuptools wheel "jax[cpu]" run: |
python -m pip install -e .[composable,neural,docs] python -m pip install --upgrade pip setuptools wheel "jax[cpu]"
docs-folder: "docs/" python -m pip install -e .[composable,neural,docs]
- name: Build documentation
run: sphinx-build -M html docs/source docs/build
- name: Publish documentation - name: Publish documentation
run: | run: |
git clone ${{ github.server_url }}/${{ github.repository }}.git --branch gh-pages --single-branch __gh-pages/ git clone ${{ github.server_url }}/${{ github.repository }}.git --branch gh-pages --single-branch __gh-pages/