From 98c9fcf29470aac83d8c12ad85b86ebf44a71d01 Mon Sep 17 00:00:00 2001 From: Michael Boyle Date: Wed, 25 Aug 2021 12:14:05 -0400 Subject: [PATCH] Note that python 3.10 works, but builds don't work yet Numpy doesn't yet have builds for 3.10 (it's still on RC1), but cibuildwheels is trying to use it, and builds fail on github for now. --- README.md | 4 ++-- setup.py | 2 +- src/quaternion/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9cef470..aaed09b 100644 --- a/README.md +++ b/README.md @@ -34,14 +34,14 @@ python -m pip install numpy-quaternion ``` (Optionally add `--user` after `install` in those last two if you're -not using a python environment — though you should start.) +not using a python environment — though you should start.) ## Dependencies The basic requirements for this code are reasonably current versions of `python` and `numpy`. In particular, `python` versions 3.6 through -3.9 are routinely tested. Python 2.7 *might* still work, but even +3.10 are routinely tested. Python 2.7 *might* still work, but even numpy no longer supports this version, so your mileage may vary. Also, any `numpy` version [greater than 1.13.0](https://github.com/moble/quaternion/issues/114) should work, diff --git a/setup.py b/setup.py index 70441a0..4ac75c8 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ # Set this first for easier replacement -version = "2021.8.25.12.11.29" +version = "2021.8.25.12.59.41" if "win" in platform.lower() and not "darwin" in platform.lower(): extra_compile_args = ["/O2"] diff --git a/src/quaternion/__init__.py b/src/quaternion/__init__.py index f0bd6dd..4c16be9 100644 --- a/src/quaternion/__init__.py +++ b/src/quaternion/__init__.py @@ -1,7 +1,7 @@ # Copyright (c) 2020, Michael Boyle # See LICENSE file for details: -__version__ = "2021.8.25.12.11.29" +__version__ = "2021.8.25.12.59.41" __doc_title__ = "Quaternion dtype for NumPy" __doc__ = "Adds a quaternion dtype to NumPy." __all__ = ['quaternion',