Skip to content

Commit

Permalink
Merge pull request #285 from neatstranger/patch-1
Browse files Browse the repository at this point in the history
Update install_astrometry_on_linux.sh
  • Loading branch information
dstndstn authored Oct 13, 2023
2 parents 5f94911 + c48c980 commit d7430e0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion solver/setup-solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
# add .. to pythonpath
path = os.path.abspath(__file__)
sys.path.append(os.path.dirname(os.path.dirname(path)))
dotdot = os.path.dirname(os.path.dirname(path))
sys.path.append(os.path.join(dotdot, 'util'))


from an_build_ext import an_build_ext
from distutils.core import setup, Extension
import numpy

Expand Down Expand Up @@ -40,7 +44,7 @@ def strlist(s, split=' '):
swig_opts=['-I'+d for d in inc] + cflags,
)

setup(#cmdclass={'build_ext': an_build_ext},
setup(cmdclass={'build_ext': an_build_ext},
name = 'Access to Astrometry.net solver/ in python',
version = '1.0',
description = '',
Expand Down

0 comments on commit d7430e0

Please sign in to comment.