Skip to content

Commit

Permalink
Version bump and ready for release (#1301)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcumming authored Jan 7, 2021
1 parent 73256fc commit 2158d2c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ graft modcc
graft python
graft sup
graft test
graft arborio

prune ext/sphinx_rtd_theme
prune ext/google-benchmark
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.1-dev
0.5
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ def __init__(self):
CL_opt.instance = {'mpi': False,
'gpu': 'none',
'vec': False,
'arch': 'native'}
'arch': 'native',
'bundled': True}

def settings(self):
return CL_opt.instance
Expand Down Expand Up @@ -111,7 +112,7 @@ def run(self):
'-DARB_VECTORIZE={}'.format('on' if opt['vec'] else 'off'),
'-DARB_ARCH={}'.format(opt['arch']),
'-DARB_GPU={}'.format(opt['gpu']),
'-DARB_USE_BUNDLED_LIBS={}'.format('on' if opt['bundled'] else 'off']),
'-DARB_USE_BUNDLED_LIBS={}'.format('on' if opt['bundled'] else 'off'),
'-DCMAKE_BUILD_TYPE=Release' # we compile with debug symbols in release mode.
]

Expand Down

0 comments on commit 2158d2c

Please sign in to comment.