From 45bc057447650eed4ef9fb546ea7b2067838bfee Mon Sep 17 00:00:00 2001 From: Michael Boyle Date: Wed, 2 Sep 2020 20:44:19 -0400 Subject: [PATCH] Correct doc links to original files [skip ci] --- mkdocs.yml | 4 ++-- setup.py | 2 +- src/quaternion/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mkdocs.yml b/mkdocs.yml index 387f871..d9f73e8 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,6 +1,6 @@ site_name: quaternion -repo_url: https://github.com/moble/quaternion +repo_url: "https://github.com/moble/quaternion" plugins: - search @@ -8,7 +8,7 @@ plugins: modules: quaternion: section: "Package API:" - source_repo: "https://github.com/moble/quaternion" + source_repo: "https://github.com/moble/quaternion/blob/master/src" theme: name: 'readthedocs' diff --git a/setup.py b/setup.py index e611c0b..bdf44bc 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ # Set this first for easier replacement -version = "2020.9.2.20.23.42" +version = "2020.9.2.20.44.19" 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 3bd052b..26fc342 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__ = "2020.9.2.20.23.42" +__version__ = "2020.9.2.20.44.19" __doc_title__ = "Quaternion dtype for NumPy" __doc__ = "Adds a quaternion dtype to NumPy." __all__ = ['quaternion',