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: 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 ~~~~~~~~~~~~~~~~