mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 02:35:20 +00:00
require version 2.6
This commit is contained in:
parent
958a3fa5b6
commit
c6870d3421
1 changed files with 5 additions and 2 deletions
5
setup.py
5
setup.py
|
@ -4,7 +4,10 @@
|
||||||
|
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
from lib.version import ELECTRUM_VERSION as version
|
from lib.version import ELECTRUM_VERSION as version
|
||||||
import os
|
import os, sys
|
||||||
|
if sys.version_info[:3] < (2,6,0):
|
||||||
|
print "Electrum requires Python version >= 2.6.0... exiting"
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
data_files=[
|
data_files=[
|
||||||
|
|
Loading…
Add table
Reference in a new issue