Skip to content
This repository has been archived by the owner on Nov 26, 2022. It is now read-only.

Commit

Permalink
Bumped to version 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
martinberoiz committed Aug 2, 2017
1 parent 13eb1ef commit bd919e6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ois.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
University of Texas at San Antonio
"""

__version__ = '0.1.2'
__version__ = '0.1.3'

import numpy as np
from scipy import signal
Expand Down
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
from setuptools import setup, Extension
import numpy

# Get the version from astroalign file itself (not imported)
with open('ois.py', 'r') as f:
for line in f:
if line.startswith('__version__'):
_, _, ois_version = line.replace("'", '').split()
break

varconv = Extension('varconv', sources=['src/varconv.c'],
extra_compile_args=["-std=c99"])

setup(name='ois',
version='0.1.2',
version=ois_version,
description='Optimal Image Subtraction',
author='Martin Beroiz',
author_email='[email protected]',
Expand Down

0 comments on commit bd919e6

Please sign in to comment.