mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-04 21:05:11 +00:00
require python 2.7 from now
This commit is contained in:
parent
e3cfc31abb
commit
571d1c8886
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -12,8 +12,8 @@ import imp
|
|||
version = imp.load_source('version', 'lib/version.py')
|
||||
util = imp.load_source('util', 'lib/util.py')
|
||||
|
||||
if sys.version_info[:3] < (2, 6, 0):
|
||||
sys.exit("Error: Electrum requires Python version >= 2.6.0...")
|
||||
if sys.version_info[:3] < (2, 7, 0):
|
||||
sys.exit("Error: Electrum requires Python version >= 2.7.0...")
|
||||
|
||||
usr_share = util.usr_share_dir()
|
||||
if not os.access(usr_share, os.W_OK):
|
||||
|
|
Loading…
Add table
Reference in a new issue