Version 0.12.0

This commit is contained in:
The MMGen Project 2020-02-26 16:49:05 +00:00
commit 6d9a192c54
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
4 changed files with 5 additions and 8 deletions

View file

@ -133,10 +133,6 @@ standard.
Linux, Armbian, Raspbian, Windows/MSYS2
#### Supported platforms:
Linux, Armbian, Raspbian, Windows/MSYS2
### Download/Install
> #### [Install a prebuilt bootable image (MMGenLive) on a USB stick][8]

View file

@ -50,6 +50,8 @@ tools as references:
zcash-mini a2b35042 (https://github.com/FiloSottile/zcash-mini)
pycoin 11f60a7c (https://github.com/richardkiss/pycoin)
vanitygen-plus 22123128 (https://github.com/exploitagency/vanitygen-plus)
MoneroPy 98e7feb2 (https://github.com/bigreddmachine/MoneroPy)
ethkey 2.7.2 (https://github.com/paritytech/parity-ethereum)
[xo]: https://github.com/mmgen/mmgen/wiki/XOR-Seed-Splitting:-Theory-and-Practice
[dc]: https://github.com/mmgen/mmgen/blob/master/mmgen/daemon.py

View file

@ -38,8 +38,8 @@ class g(object):
# Constants:
version = '0.11.099'
release_date = 'May 2019'
version = '0.12.0'
release_date = 'February 2020'
proj_name = 'MMGen'
proj_url = 'https://github.com/mmgen/mmgen'

View file

@ -20,13 +20,12 @@ import sys,os,subprocess
from shutil import copy2
ver = sys.version_info[:2]
min_ver = (3,5)
min_ver = (3,6)
if ver[0] < min_ver[0] or ver[1] < min_ver[1]:
m = '{}.{}: wrong Python version. MMGen requires Python {M}.{m} or greater\n'
sys.stderr.write(m.format(*ver,M=min_ver[0],m=min_ver[1]))
sys.exit(1)
have_arm = subprocess.check_output(['uname','-m']).strip() == b'aarch64'
have_msys2 = subprocess.check_output(['uname','-s']).strip()[:7] == b'MSYS_NT'
from distutils.core import setup,Extension