Skip to content

Commit

Permalink
Merge branch 'devel' into switch-to-poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBubel authored Jul 28, 2024
2 parents 028f088 + aa49220 commit 70b00ab
Show file tree
Hide file tree
Showing 7 changed files with 23,376 additions and 16,933 deletions.
24 changes: 16 additions & 8 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,19 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: Install dependencies
- name: Install build dependencies
run: |
pip install poetry
- name: Install lib
run: |
poetry install
- name: pytest
- name: Install lib
run: |
python setup.py develop
- name: pytest
run: |
poetry run pytest
Expand All @@ -55,7 +59,7 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: Install dependencies
- name: Install build dependencies
run: |
pip install poetry
Expand All @@ -66,6 +70,7 @@ jobs:
- name: pytest
run: |
poetry run pytest
test-macos:
strategy:
matrix:
Expand Down Expand Up @@ -159,12 +164,11 @@ jobs:
matrix:
python: ['cp39-cp39', 'cp310-cp310', 'cp311-cp311', 'cp312-cp312']
runs-on: ubuntu-latest
container:
image: quay.io/pypa/manylinux2014_x86_64
container: quay.io/pypa/manylinux2014_x86_64

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v1

- name: Install poetry
run: |
Expand Down Expand Up @@ -201,11 +205,15 @@ jobs:
- name: List contents of dist
run: ls -R dist

- name: Get the name of the wheel file
id: get-wheel-name
run: echo "::set-output name=wheel-name::$(ls dist/*.whl)"

- name: Archive build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v1
with:
name: dist-artifacts-manylinux-${{ matrix.python }}
path: dist/*
path: ${{ steps.get-wheel-name.outputs.wheel-name }}

deploy:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## v1.13.2 (2024-07-21)
* update string checks in initialization method for latent variable and put `empirical_samples` init-method on a deprecation path

* 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
2 changes: 1 addition & 1 deletion GPy/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.13.1"
__version__ = "1.13.2"
Loading

0 comments on commit 70b00ab

Please sign in to comment.