Skip to content

Commit

Permalink
Skip python 3.10 builds until numpy catches up
Browse files Browse the repository at this point in the history
  • Loading branch information
moble committed Aug 25, 2021
1 parent a543659 commit 14fe480
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
archs: aarch64

env:
CIBW_SKIP: cp27-* cp35-* pp*
CIBW_SKIP: cp27-* cp35-* cp310-* pp*
CIBW_ARCHS: ${{matrix.archs}}
CIBW_BEFORE_BUILD: python -c "print(('#'*130+'\n')*10)" && pip install "numpy>=1.13"
CIBW_TEST_REQUIRES: pytest pytest-cov
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.11.52.52"
version = "2021.8.25.12.11.29"

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.11.52.52"
__version__ = "2021.8.25.12.11.29"
__doc_title__ = "Quaternion dtype for NumPy"
__doc__ = "Adds a quaternion dtype to NumPy."
__all__ = ['quaternion',
Expand Down

0 comments on commit 14fe480

Please sign in to comment.