Skip to content

Commit

Permalink
REL: Release 0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
albop committed Aug 29, 2013
1 parent 865d90d commit b6a40b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dolo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4.4"
from dolo.version import __version_info__, __version__

from dolo.config import *

Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
from Cython.Distutils import build_ext
import numpy as np

from dolo import __version__
# get version number
exec( open('dolo/version.py').read())

setup(

Expand All @@ -28,13 +29,13 @@
Extension(
'dolo.numeric.interpolation.splines_filter',
['dolo/numeric/interpolation/splines_filter.pyx'],
extra_compile_args=['-O3', '-fopenmp']
extra_compile_args=['-O3']
),

Extension(
'dolo.numeric.interpolation.splines_cython',
['dolo/numeric/interpolation/splines_cython.pyx'],
extra_compile_args=['-O3', '-fopenmp']
extra_compile_args=['-O3']
),

Extension(
Expand Down

0 comments on commit b6a40b8

Please sign in to comment.