From 119b43e85c59917b973cb41c116fa50647b7755f Mon Sep 17 00:00:00 2001 From: Eneko Martin-Martinez Date: Thu, 27 Jun 2024 17:56:51 +0200 Subject: [PATCH 1/2] Skip coverage in CI --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ba9023b..b8f41087 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,10 +31,15 @@ jobs: pip install -U wheel pip install --prefer-binary -r tests/requirements.txt pip install --prefer-binary -e . + - name: Test + run: | + pytest tests/ -n 2 + if: ${{ matrix.python-version != 3.9 || matrix.os != 'ubuntu-latest' }} - name: Test and coverage run: | pytest tests/ --cov=pysd -n 2 coverage xml + if: ${{ matrix.python-version == 3.9 && matrix.os == 'ubuntu-latest' }} - name: Coveralls uses: coverallsapp/github-action@v2 with: From 5b68208a8846e91f78c5ee8b2d003a334177f515 Mon Sep 17 00:00:00 2001 From: Eneko Martin-Martinez Date: Thu, 27 Jun 2024 18:15:29 +0200 Subject: [PATCH 2/2] Update whats new --- docs/whats_new.rst | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/docs/whats_new.rst b/docs/whats_new.rst index cd08b503..a5c39448 100644 --- a/docs/whats_new.rst +++ b/docs/whats_new.rst @@ -1,5 +1,32 @@ What's New ========== +v3.14.1 (2024/06/XX) +-------------------- +New Features +~~~~~~~~~~~~ + +Breaking changes +~~~~~~~~~~~~~~~~ + +Deprecations +~~~~~~~~~~~~ + +Bug fixes +~~~~~~~~~ +- Support for :py:mod:`numpy` 2. (`@enekomartinmartinez `_) +- Allow multiple font styles in var names (:issue:`443`). (`@rogersamso `_) + +Documentation +~~~~~~~~~~~~~ + +Performance +~~~~~~~~~~~ + +Internal Changes +~~~~~~~~~~~~~~~~ +- Fix CI tests. (`@rogersamso `_) +- Run CI coverage only on ubuntu and lowest Python. (`@enekomartinmartinez `_) + v3.14.0 (2024/04/24) -------------------- New Features @@ -267,7 +294,7 @@ v3.9.1 (2023/03/11) New Features ~~~~~~~~~~~~ -- Add :py:const:`numpy.py` as translation for the call to the function `PI()`. (`@lionel42 `_) +- Add :py:const:`numpy.pi` as translation for the call to the function `PI()`. (`@lionel42 `_) Breaking changes ~~~~~~~~~~~~~~~~