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 0f87e11 commit 7f247a0Copy full SHA for 7f247a0
setup.py
@@ -9,6 +9,13 @@
9
from setuptools import setup
10
11
12
+class NotSupportedException(BaseException): pass
13
+
14
15
+if sys.version_info.major < 3:
16
+ raise NotSupportedException("Only Python 3.x Supported")
17
18
19
def platform_detection(install_binaries=True):
20
"""
21
Detect the platform and adapt the binaries location.
@@ -31,7 +38,7 @@ def platform_detection(install_binaries=True):
31
38
32
39
# Set some variables (PKGBUILD inspired)
33
40
DATA_FILES = platform_detection()
34
-VERSION = "0.2.1"
41
+VERSION = "0.2.2"
35
42
URL = "https://github.com/StuntsPT/Structure_threader"
36
43
37
44
0 commit comments