Skip to content

Commit

Permalink
Note that python 3.10 works, but builds don't work yet
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
moble committed Aug 25, 2021
1 parent 14fe480 commit 98c9fcf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion src/quaternion/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) 2020, Michael Boyle
# See LICENSE file for details: <https://github.com/moble/quaternion/blob/main/LICENSE>

__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',
Expand Down

0 comments on commit 98c9fcf

Please sign in to comment.