Skip to content

Commit 8232fc9

Browse files
committed
SpiceyPy v4.0.1
Added - docs info about ARM support, currently limited to conda-forge spiceypy - docs citation info/basic intro - hash checksums for test kernels - offline install ci tests - warn_deprecated_args function to aid future deprecations Deprecated - added deprecation warnings for ncol/nrow params for: mtxmg, mtxvg, mxm, mxmg, mxmt, mxmtg, mxvg, vtmvg, xposeg pending next major release. - added deprecation warnings for ndim param for: unormg, vaddg, vdistg, vdotg, vequg, vhatg, vminug, vnromg, vrelg, vsclg, vsepg, vsubg, vzerog pending next major release. Changed - copyright year - a number of typehints to accept np.ndarray - changed test_wrapper to use a pytest autouse fixture to call reset/kclear automatically for most tests Fixed - missing docs for xf2eul - numpy bool_ deprecation warnings - numpy float warning - type hint for appndd
1 parent f7b213e commit 8232fc9

File tree

5 files changed

+27
-12
lines changed

5 files changed

+27
-12
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to SpiceyPy will be documented here
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project tries to adhere to [Semantic Versioning](http://semver.org/).
66

7-
## [4.0.1] - 2021-
7+
## [4.0.1] - 2021-05-31
88
### Added
99
- docs info about ARM support, currently limited to conda-forge spiceypy
1010
- docs citation info/basic intro

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = "4.0.0"
67+
version = "4.0.1"
6868
# The full version, including alpha/beta/rc tags.
69-
release = "4.0.0"
69+
release = "4.0.1"
7070

7171
# The language for content autogenerated by Sphinx. Refer to documentation
7272
# for a list of supported languages.

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def run(self):
7676

7777

7878
class GetCSPICECommand(Command):
79-
""" Custom command to get the correct cspice and build the shared library for spiceypy """
79+
"""Custom command to get the correct cspice and build the shared library for spiceypy"""
8080

8181
description = "downloads cspice and builds the shared library"
8282
user_options = []
@@ -92,7 +92,7 @@ def run(self):
9292

9393

9494
class BuildPyCommand(build_py):
95-
""" Custom build command to ensure cspice is built and packaged """
95+
"""Custom build command to ensure cspice is built and packaged"""
9696

9797
def run(self):
9898
InstallCSpice.get_cspice()
@@ -111,7 +111,7 @@ def run(self):
111111

112112
setup(
113113
name="spiceypy",
114-
version="4.0.0",
114+
version="4.0.1",
115115
license="MIT",
116116
author="Andrew Annex",
117117
author_email="[email protected]",

spiceypy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
SOFTWARE.
2323
"""
2424
__author__ = "AndrewAnnex"
25-
__version__ = "4.0.0"
25+
__version__ = "4.0.1"
2626

2727
from .spiceypy import *
2828
from .utils import support_types

spiceypy/spiceypy.py

+20-5
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def warn_deprecated_args(**kwargs) -> None:
8686
warnings.warn(
8787
f"Specifying any of: {varnames} will be deprecated as of SpiceyPy 5.0.0",
8888
DeprecationWarning,
89-
stacklevel=2
89+
stacklevel=2,
9090
)
9191
pass
9292

@@ -8974,7 +8974,13 @@ def mxmt(
89748974

89758975

89768976
@spice_error_check
8977-
def mxmtg(m1: Union[ndarray, Iterable[Iterable[float]]], m2: Union[ndarray, Iterable[Iterable[float]]], nrow1: OptionalInt = None, nc1c2: OptionalInt = None, nrow2: OptionalInt = None) -> ndarray:
8977+
def mxmtg(
8978+
m1: Union[ndarray, Iterable[Iterable[float]]],
8979+
m2: Union[ndarray, Iterable[Iterable[float]]],
8980+
nrow1: OptionalInt = None,
8981+
nc1c2: OptionalInt = None,
8982+
nrow2: OptionalInt = None,
8983+
) -> ndarray:
89788984
"""
89798985
Multiply a matrix and the transpose of a matrix, both of arbitrary size.
89808986
@@ -9019,7 +9025,12 @@ def mxv(m1: ndarray, vin: ndarray) -> ndarray:
90199025

90209026

90219027
@spice_error_check
9022-
def mxvg(m1: Union[ndarray, Iterable[Iterable[float]]], v2: Union[ndarray, Iterable[Iterable[float]]], nrow1: OptionalInt = None, nc1r2: OptionalInt = None) -> ndarray:
9028+
def mxvg(
9029+
m1: Union[ndarray, Iterable[Iterable[float]]],
9030+
v2: Union[ndarray, Iterable[Iterable[float]]],
9031+
nrow1: OptionalInt = None,
9032+
nc1r2: OptionalInt = None,
9033+
) -> ndarray:
90239034
"""
90249035
Multiply a matrix and a vector of arbitrary size.
90259036
@@ -14621,7 +14632,9 @@ def vadd(
1462114632

1462214633
@spice_error_check
1462314634
def vaddg(
14624-
v1: Union[ndarray, Iterable[float]], v2: Union[ndarray, Iterable[float]], ndim: OptionalInt = None
14635+
v1: Union[ndarray, Iterable[float]],
14636+
v2: Union[ndarray, Iterable[float]],
14637+
ndim: OptionalInt = None,
1462514638
) -> ndarray:
1462614639
"""
1462714640
Add two n-dimensional vectors
@@ -15104,7 +15117,9 @@ def vrel(
1510415117

1510515118
@spice_error_check
1510615119
def vrelg(
15107-
v1: Union[ndarray, Iterable[float]], v2: Union[ndarray, Iterable[float]], ndim: OptionalInt = None
15120+
v1: Union[ndarray, Iterable[float]],
15121+
v2: Union[ndarray, Iterable[float]],
15122+
ndim: OptionalInt = None,
1510815123
) -> float:
1510915124
"""
1511015125
Return the relative difference between two vectors of general dimension.

0 commit comments

Comments
 (0)