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 10
10
########################################################
11
11
12
12
from setuptools import setup , find_packages
13
+ from __af_version__ import full_version
13
14
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
22
18
23
19
setup (
24
20
author = "Pavan Yalamanchili" ,
25
21
26
22
name = "arrayfire" ,
27
- version = release_version ,
23
+ version = full_version ,
28
24
description = "Python bindings for ArrayFire" ,
29
25
license = "BSD" ,
30
26
url = "http://arrayfire.com" ,
You can’t perform that action at this time.
0 commit comments