Skip to content

Commit 1eb0a8d

Browse files
committed
Add missing files to the MANIFEST
1 parent 6faf70d commit 1eb0a8d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ include astrometry.net/solver/*.h
1111
include astrometry.net/util/boilerplate.h
1212
include astrometry.net/util/bl-nl.c
1313
include 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ import astrometry
254254
def 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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def run(self):
249249

250250
setuptools.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
author_email="[email protected]",

0 commit comments

Comments
 (0)