Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion astLib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
"""

__all__=['astCalc', 'astCoords', 'astImages', 'astPlots', 'astStats', 'astWCS', 'astSED']
__version__ = '0.13.0'
__version__ = '0.13.1'
2 changes: 1 addition & 1 deletion astLib/astCoords.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def calcAngSepDeg(RADeg1, decDeg1, RADeg2, decDeg2):
r=numpy.degrees(numpy.arccos(a))

# Above gives nan when RADeg1, decDeg1 == RADeg1, decDeg2
indexList=numpy.where(numpy.isnan(r) == True)[0]
indexList=numpy.where(numpy.isnan(numpy.atleast_1d(r)) == True)[0]
tolerance=1e-6
if len(indexList) > 0:
for index in indexList:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def build_extensions(self):
build_ext.build_extensions(self)

setup(name='astLib',
version='0.13.0',
version='0.13.1',
packages=['astLib', 'PyWCSTools'],
package_data={'astLib': ['data/*']},
cmdclass={"build_ext": build_PyWCSTools_ext},
Expand Down
Loading