Skip to content

Commit

Permalink
Add missing files to the MANIFEST
Browse files Browse the repository at this point in the history
  • Loading branch information
aMarcireau committed May 21, 2023
1 parent 6faf70d commit 1eb0a8d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1eb0a8d

Please sign in to comment.