Skip to content

Commit

Permalink
Merge branch 'devel' into 1078-the-init-status-in-initialize_latent
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBubel authored Jul 21, 2024
2 parents df47258 + 96e4154 commit 0c78b17
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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: |
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0c78b17

Please sign in to comment.