Skip to content

Commit

Permalink
BUG: adding version.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
cournape committed Jun 12, 2011
1 parent 348c1b1 commit 5257acb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions bscript
Expand Up @@ -173,6 +173,9 @@ def post_configure(context):
f.extend(["-undefined", "dynamic_lookup", "-bundle"])
conf.env["MACOSX_DEPLOYMENT_TARGET"] = "10.4"

conf.env.CFLAGS_cstlib = ["-fPIC"]
conf.env.FCLAGS_cstlib = ["-fPIC"]

conf.env.HAS_FBLAS = False
conf.env.HAS_CBLAS = False
conf.env.HAS_FLAPACK = False
Expand Down Expand Up @@ -238,5 +241,13 @@ def pre_build(context):
content="""\
def show():
pass
""",
always=True)
bld(features="gen_pymodule",
target="scipy/version.py",
content="""\
version = '0.9.0'
short_version = version
is_released = True
""",
always=True)

0 comments on commit 5257acb

Please sign in to comment.