Merge branch 'devel' of github.com:mirkobunse QuaPy into mirkobunse-devel
This commit is contained in:
commit
1f1757f0ee
|
@ -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/
|
||||||
|
|
Loading…
Reference in New Issue