We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c6c47c commit 57f0045Copy full SHA for 57f0045
setup.py
@@ -15,11 +15,16 @@
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.20160320"
20
+devel_version = "3.3.0"
21
+release_version = current_version if current_version > devel_version else devel_version
22
+
23
setup(
24
author="Pavan Yalamanchili",
25
author_email="pavan@arrayfire.com",
26
name="arrayfire",
- version="3.3.20160320",
27
+ version=release_version
28
description="Python bindings for ArrayFire",
29
license="BSD",
30
url="http://arrayfire.com",
0 commit comments