Merge pull request #658 from phaezah7/python-wheel-no-abi-constraint

Openweave Python packages should not depend on Python ABI version
diff --git a/src/device-manager/python/build-openweave-wheel.py b/src/device-manager/python/build-openweave-wheel.py
index b3a84a1..3673cc2 100644
--- a/src/device-manager/python/build-openweave-wheel.py
+++ b/src/device-manager/python/build-openweave-wheel.py
@@ -119,6 +119,12 @@
         def finalize_options(self):
             bdist_wheel.finalize_options(self)
             self.root_is_pure = False
+
+        def get_tag(self):
+            python, abi, platform = bdist_wheel.get_tag(self)
+            # Openweave does not depend on Python version or ABI
+            python, abi = 'py2.py3', 'none'
+            return python, abi, platform
     
     # Construct the package version string.  If building under Travis use the Travis
     # build number as the package version.  Otherwise use a dummy version of '0.0'.