From 1eb0a8d49d4364cf8092d9f696532fe82463b2db Mon Sep 17 00:00:00 2001 From: Alexandre Marcireau Date: Sun, 21 May 2023 14:43:32 +1000 Subject: [PATCH] Add missing files to the MANIFEST --- MANIFEST.in | 3 +++ README.md | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 463d56b..617e81a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -11,3 +11,6 @@ include astrometry.net/solver/*.h include astrometry.net/util/boilerplate.h include astrometry.net/util/bl-nl.c include astrometry.net/util/qsort_reentrant.c +include astrometry_extension/astrometry_extension.c +include astrometry_extension/astrometry_extension_utilities.h +include scripts/*.py diff --git a/README.md b/README.md index a605a1a..ef4e301 100644 --- a/README.md +++ b/README.md @@ -254,7 +254,7 @@ import astrometry def logodds_callback(logodds_list: list[float]) -> astrometry.Action: if len(logodds_list) < 3: return astrometry.Action.CONTINUE - if logodds[1] > logodds[0] - 10 and logodds[2] > logodds[0] - 10: + if logodds_list[1] > logodds_list[0] - 10 and logodds_list[2] > logodds_list[0] - 10: return astrometry.Action.STOP return astrometry.Action.CONTINUE diff --git a/setup.py b/setup.py index 2388fd3..a94edfc 100644 --- a/setup.py +++ b/setup.py @@ -249,7 +249,7 @@ def run(self): setuptools.setup( name="astrometry", - version="4.1.1", + version="4.1.2", url="https://github.com/neuromorphicsystems/astrometry", author="ICNS, Alexandre Marcireau", author_email="alexandre.marcireau@gmail.com",