diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index b3da3953..1b593111 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -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: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 14a12cae..331157cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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