From 41f77d05fa92aa2b2ffe143136ffcd4d42de644f Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Thu, 14 Oct 2021 14:36:10 +0200 Subject: [PATCH] RLS Version 1.4.12 - Fix for a NumPy deprecated behavior - Build wheels for more recent Python (3.9 & 3.10) closes #125 --- .github/workflows/python-package-linux.yml | 2 +- .github/workflows/python-package-macos.yml | 2 +- .github/workflows/python-package-win32.yml | 2 +- .github/workflows/python-package-win64.yml | 2 +- ChangeLog | 2 +- README.md | 5 +++++ docs/source/history.rst | 6 ++++++ mahotas/mahotas_version.py | 2 +- 8 files changed, 17 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-package-linux.yml b/.github/workflows/python-package-linux.yml index 96a09103..2561557c 100644 --- a/.github/workflows/python-package-linux.yml +++ b/.github/workflows/python-package-linux.yml @@ -22,7 +22,7 @@ jobs: - name: Build manylinux Python wheels uses: RalfG/python-wheels-manylinux-build@v0.2.2-manylinux2010_x86_64 with: - python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38' + python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39' build-requirements: 'numpy' - name: Publish wheels to PyPI env: diff --git a/.github/workflows/python-package-macos.yml b/.github/workflows/python-package-macos.yml index 3a968a9c..dfe03553 100644 --- a/.github/workflows/python-package-macos.yml +++ b/.github/workflows/python-package-macos.yml @@ -11,7 +11,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/python-package-win32.yml b/.github/workflows/python-package-win32.yml index 267a109b..882ffa5d 100644 --- a/.github/workflows/python-package-win32.yml +++ b/.github/workflows/python-package-win32.yml @@ -11,7 +11,7 @@ jobs: runs-on: windows-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/python-package-win64.yml b/.github/workflows/python-package-win64.yml index fde8f6cc..a98777f5 100644 --- a/.github/workflows/python-package-win64.yml +++ b/.github/workflows/python-package-win64.yml @@ -11,7 +11,7 @@ jobs: runs-on: windows-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 diff --git a/ChangeLog b/ChangeLog index 62ed76ca..22cb664c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -Unreleased +Version 1.4.12 2021-10-14 by luispedro * Update for newer NumPy Version 1.4.11 2020-08-16 by luispedro diff --git a/README.md b/README.md index 77637575..d08559d9 100644 --- a/README.md +++ b/README.md @@ -219,6 +219,11 @@ questions. ## Recent Changes +### Version 1.4.12 (Oct 14 2021) + +- Update to newer NumPy +- Build wheels for Python 3.9 & 3.10 + ### Version 1.4.11 (Aug 16 2020) - Convert tests to pytest diff --git a/docs/source/history.rst b/docs/source/history.rst index 52365918..685eba3a 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -2,6 +2,12 @@ History ======= +Version 1.4.12 (Oct 14 2021) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Update to newer NumPy +- Build wheels for Python 3.9 & 3.10 + Version 1.4.11 (Aug 16 2020) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/mahotas/mahotas_version.py b/mahotas/mahotas_version.py index a3145652..14895e4f 100644 --- a/mahotas/mahotas_version.py +++ b/mahotas/mahotas_version.py @@ -1 +1 @@ -__version__ = '1.4.11' +__version__ = '1.4.12'