Skip to content

Commit

Permalink
RLS Version 1.4.12
Browse files Browse the repository at this point in the history
- Fix for a NumPy deprecated behavior
- Build wheels for more recent Python (3.9 & 3.10)

closes #125
  • Loading branch information
luispedro committed Oct 14, 2021
1 parent cf9bc17 commit 41f77d0
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package-linux.yml
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package-macos.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package-win32.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package-win64.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down
5 changes: 5 additions & 0 deletions README.md
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions docs/source/history.rst
Expand Up @@ -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)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion mahotas/mahotas_version.py
@@ -1 +1 @@
__version__ = '1.4.11'
__version__ = '1.4.12'

0 comments on commit 41f77d0

Please sign in to comment.