File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -11,3 +11,6 @@ include astrometry.net/solver/*.h
1111include astrometry.net/util/boilerplate.h
1212include astrometry.net/util/bl-nl.c
1313include astrometry.net/util/qsort_reentrant.c
14+ include astrometry_extension/astrometry_extension.c
15+ include astrometry_extension/astrometry_extension_utilities.h
16+ include scripts/*.py
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ import astrometry
254254def logodds_callback (logodds_list : list[float ]) -> astrometry.Action:
255255 if len (logodds_list) < 3 :
256256 return astrometry.Action.CONTINUE
257- if logodds [1 ] > logodds [0 ] - 10 and logodds [2 ] > logodds [0 ] - 10 :
257+ if logodds_list [1 ] > logodds_list [0 ] - 10 and logodds_list [2 ] > logodds_list [0 ] - 10 :
258258 return astrometry.Action.STOP
259259 return astrometry.Action.CONTINUE
260260
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ def run(self):
249249
250250setuptools .setup (
251251 name = "astrometry" ,
252- version = "4.1.1 " ,
252+ version = "4.1.2 " ,
253253 url = "https://github.com/neuromorphicsystems/astrometry" ,
254254 author = "ICNS, Alexandre Marcireau" ,
255255
You can’t perform that action at this time.
0 commit comments