From 53affee0108ce69f832dad0b3c62172be817a169 Mon Sep 17 00:00:00 2001 From: AndrewAnnex Date: Fri, 9 Jun 2017 20:43:00 -0400 Subject: [PATCH] SpiceyPy 2.0.0 * update for N66 support including a bunch of new functions * dropped 32-bit builds * simplified returned string lengths * other things in the change log --- CHANGELOG.md | 2 +- appveyor/meta.yaml | 2 +- docs/conf.py | 6 +++--- setup.py | 2 +- spiceypy/spiceypy.py | 7 ++++++- 5 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68c99958..971d7535 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to SpiceyPy will be documented here The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project tries to adhere to [Semantic Versioning](http://semver.org/). -## [2.0.0] +## [2.0.0] - 2017-06-09 ### Added - Implemented most of the new functions from N66 SPICE - IntMatrixType support type diff --git a/appveyor/meta.yaml b/appveyor/meta.yaml index 7d71cda2..12a3aa01 100644 --- a/appveyor/meta.yaml +++ b/appveyor/meta.yaml @@ -1,6 +1,6 @@ package: name: spiceypy - version: "1.1.2.dev0" + version: "2.0.0" source: path: ../ diff --git a/docs/conf.py b/docs/conf.py index 8245aa78..792dd476 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,16 +64,16 @@ def __getattr__(cls, name): # General information about the project. project = 'SpiceyPy' -copyright = '2014-2016, Andrew Annex' +copyright = '2014-2017, Andrew Annex' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '2.0.0.dev0' +version = '2.0.0' # The full version, including alpha/beta/rc tags. -release = '2.0.0.dev0' +release = '2.0.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 5b87cc0b..4840412a 100644 --- a/setup.py +++ b/setup.py @@ -206,7 +206,7 @@ def windows_method(): setup( name='spiceypy', - version='2.0.0.dev0', + version='2.0.0', license='MIT', author='Andrew Annex', author_email='ama6fy@virginia.edu', diff --git a/spiceypy/spiceypy.py b/spiceypy/spiceypy.py index 029c484a..36f1c5af 100644 --- a/spiceypy/spiceypy.py +++ b/spiceypy/spiceypy.py @@ -2036,10 +2036,15 @@ def dasonw(fname, ftype, ifname, ncomch): Internal undocumented command for creating a new DAS file :param fname: filename + :type fname: str :param ftype: type + :type ftype: str :param ifname: internal file name + :type ifname: str :param ncomch: amount of comment area - :return: + :type ncomch: int + :return: Handle to new DAS file + :rtype: int """ fnamelen = ctypes.c_int(len(fname)) ftypelen = ctypes.c_int(len(ftype))