Skip to content

Commit

Permalink
Correct typo enabling propagation of version info
Browse files Browse the repository at this point in the history
  • Loading branch information
moble committed Mar 17, 2021
1 parent e612102 commit 7d82e91
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-latest]

env:
CIBW_SKIP: cp27-* cp35-* pp*
Expand All @@ -23,8 +23,6 @@ jobs:

- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.7'

- name: Install cibuildwheel
run: |
Expand Down Expand Up @@ -69,7 +67,7 @@ jobs:
# Note: This requires numpy, so it must run after the build step
export new_version=$(python -c 'import setup; print(setup.version)')
echo "Found version ${new_version}"
echo "::set-output name=version::${version}"
echo "::set-output name=version::${new_version}"
- uses: actions/upload-artifact@v2
with:
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.3.17.16.10.20"
version = "2021.3.17.16.51.43"

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

0 comments on commit 7d82e91

Please sign in to comment.