Merge branch 'devel' into 1078-the-init-status-in-initialize_latent

This commit is contained in:
Martin Bubel 2024-07-21 16:49:26 +02:00 committed by GitHub
commit 0c78b17cde
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 6 deletions

View file

@ -27,6 +27,10 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install build dependencies
run: |
pip install setuptools
- name: Install lib
run: |
@ -37,11 +41,6 @@ jobs:
pip install matplotlib
pip install pytest
- name: Install test dependencies
run: |
pip install matplotlib
pip install pytest
- name: pytest
run: |
pytest GPy/testing
@ -60,7 +59,11 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install build dependencies
run: |
pip install setuptools
- name: Install lib
run: |
python setup.py develop
@ -88,6 +91,10 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
pip install setuptools
- name: Install lib
run: |

View file

@ -5,6 +5,8 @@
* update dependencies to `numpy>=1.7.0,<2.0.0`
* update dependencies to `numpy>=1.7.0,<2.0.0`
* update import in `.plotting.matplot_dep.defaults` due to change in matplotlib
* Correct dl_dm term in student t inference #1065