-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
1 parent
f7b213e
commit 8232fc9
Showing
5 changed files
with
27 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,7 +76,7 @@ def run(self): | |
|
||
|
||
class GetCSPICECommand(Command): | ||
""" Custom command to get the correct cspice and build the shared library for spiceypy """ | ||
"""Custom command to get the correct cspice and build the shared library for spiceypy""" | ||
|
||
description = "downloads cspice and builds the shared library" | ||
user_options = [] | ||
|
@@ -92,7 +92,7 @@ def run(self): | |
|
||
|
||
class BuildPyCommand(build_py): | ||
""" Custom build command to ensure cspice is built and packaged """ | ||
"""Custom build command to ensure cspice is built and packaged""" | ||
|
||
def run(self): | ||
InstallCSpice.get_cspice() | ||
|
@@ -111,7 +111,7 @@ def run(self): | |
|
||
setup( | ||
name="spiceypy", | ||
version="4.0.0", | ||
version="4.0.1", | ||
license="MIT", | ||
author="Andrew Annex", | ||
author_email="[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters