File tree Expand file tree Collapse file tree 2 files changed +19
-9
lines changed Expand file tree Collapse file tree 2 files changed +19
-9
lines changed Original file line number Diff line number Diff line change 1+ #!/usr/bin/python
2+
3+ #######################################################
4+ # Copyright (c) 2015, ArrayFire
5+ # All rights reserved.
6+ #
7+ # This file is distributed under 3-clause BSD license.
8+ # The complete license agreement can be obtained at:
9+ # http://arrayfire.com/licenses/BSD-3-Clause
10+ ########################################################
11+
12+ version = "3.4"
13+ release = "0"
14+ full_version = version + "." + release
Original file line number Diff line number Diff line change 1010########################################################
1111
1212from setuptools import setup , find_packages
13+ from __af_version__ import full_version
1314
14- ## TODO:
15- ## 1) Look for af libraries during setup
16- ## 2) Include test suite
17-
18- # Some hackery to avoid merge conflicts between master and devel
19- current_version = "3.3.20160516"
20- devel_version = "3.3.0"
21- release_version = current_version if current_version > devel_version else devel_version
15+ TODO :
16+ 1 ) Look for af libraries during setup
17+ 2 ) Include test suite
2218
2319setup (
2420 author = "Pavan Yalamanchili" ,
2521 author_email = "pavan@arrayfire.com" ,
2622 name = "arrayfire" ,
27- version = release_version ,
23+ version = full_version ,
2824 description = "Python bindings for ArrayFire" ,
2925 license = "BSD" ,
3026 url = "http://arrayfire.com" ,
You can’t perform that action at this time.
0 commit comments