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 9db1699 commit c52d9a1Copy full SHA for c52d9a1
setup.py
@@ -46,13 +46,13 @@
46
# more options depends on python version
47
if float(sys.version[:3]) <= 2.6:
48
print("Sorry, We do recommand that you shoud move to a new version fo python than Python3.5+ ")
49
- break
50
- elif float(sys.version[:3])==2.7:
+ pass
+ elif float(sys.version[:3]) == 2.7:
51
52
package_dir={PROG:'v2'}
53
install_requires.append(["matplotlib == 2.0.2"])
54
55
- elif float(sys.version[:3])>=3.5:
+ elif float(sys.version[:3]) >= 3.5:
56
package_dir={PROG:'v3'}
57
install_requires.append(["matplotlib >= 2.0.2"])
58
0 commit comments