-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enchancement to
pull_isotime
for parsing TDB timescale ISOTimes.
- Loading branch information
Showing
8 changed files
with
123 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
Change history | ||
=============== | ||
|
||
|
||
0.9.8 - 2016/11/09 | ||
------------------- | ||
Enhancement to ``pull_isotime`` convenience function: Add support for | ||
conversion of event-timestamps to UTC from the TDB (Barycentric Dynamical | ||
Time) format. This is now in use 'in the wild' for the GAIA VOEvent | ||
stream. | ||
(Support for remaining VOEvent timescales 'GPS' and 'TT' has been | ||
considered but needs a motivating use-case, see | ||
https://github.com/timstaley/voevent-parse/issues/5 ) | ||
|
||
0.9.7 - 2016/10/31 | ||
------------------ | ||
Identical to 0.96, fixes a packaging issue most likely due to temporary | ||
files / dev installation confusing the packager. | ||
|
||
0.9.6 - 2016/10/31 | ||
------------------ | ||
Minor bugfix to ``pull_params``: Don't bork on missing Param name. | ||
However, note that if multiple Params are present without a `name` | ||
attribute then this convenience routine doesn't really make sense - see | ||
warning in docs. | ||
|
||
0.9.5 - 2016/05/03 | ||
------------------ | ||
Switch to versioneer for version numbering / release tagging. | ||
CF https://github.com/warner/python-versioneer |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
.. include:: ../../CHANGES.rst |
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 |
---|---|---|
|
@@ -24,6 +24,7 @@ Contents | |
intro | ||
examples | ||
reference | ||
changelog | ||
|
||
|
||
Indices and tables | ||
|
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 |
---|---|---|
|
@@ -3,20 +3,26 @@ | |
from setuptools import setup | ||
import versioneer | ||
|
||
install_requires = [ | ||
"astropy>=1.2", | ||
"lxml>=2.3, <4.0", | ||
'iso8601', | ||
'pytz', | ||
'six', | ||
] | ||
|
||
setup( | ||
name="voevent-parse", | ||
version=versioneer.get_version(), | ||
cmdclass=versioneer.get_cmdclass(), | ||
packages=['voeventparse', 'voeventparse.tests', 'voeventparse.tests.resources'], | ||
package_data={'voeventparse':['tests/resources/*.xml']}, | ||
packages=['voeventparse', 'voeventparse.tests', | ||
'voeventparse.tests.resources'], | ||
package_data={'voeventparse': ['tests/resources/*.xml']}, | ||
description="Convenience routines for parsing and manipulation of " | ||
"VOEvent XML packets.", | ||
author="Tim Staley", | ||
author_email="[email protected]", | ||
url="https://github.com/timstaley/voevent-parse", | ||
install_requires=["lxml>=2.3, <4.0", | ||
'six', | ||
'iso8601', | ||
], | ||
install_requires=install_requires, | ||
test_suite='voeventparse.tests' | ||
) |
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
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