Skip to content

Commit 57f0045

Browse files
committed
Changing setup.py to avoid conflicts between master and devel
1 parent 3c6c47c commit 57f0045

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,16 @@
1515
## 1) Look for af libraries during setup
1616
## 2) Include test suite
1717

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+
1823
setup(
1924
author="Pavan Yalamanchili",
2025
author_email="[email protected]",
2126
name="arrayfire",
22-
version="3.3.20160320",
27+
version=release_version
2328
description="Python bindings for ArrayFire",
2429
license="BSD",
2530
url="http://arrayfire.com",

0 commit comments

Comments
 (0)