updated gnupg version and removed CI check for gnupg

This commit is contained in:
Kevin Froman 2018-01-26 19:35:18 -06:00
parent bf2290ab26
commit e59ca3968c
No known key found for this signature in database
GPG Key ID: 0D414D0FE405B63B
2 changed files with 2 additions and 5 deletions

View File

@ -49,10 +49,7 @@ class Core:
''' Generate the main PGP key for our client. Should not be done often.
Uses own PGP home folder in the data/ directory. '''
# Generate main pgp key
if os.getenv('TRAVIS') == 'true':
gpg = gnupg.GPG(homedir='./data/pgp/')
else:
gpg = gnupg.GPG(gnupghome='./data/pgp/')
gpg = gnupg.GPG(gnupghome='./data/pgp/')
input_data = gpg.gen_key_input(key_type="RSA", key_length=2048, name_real=myID, name_email='anon@onionr')
#input_data = gpg.gen_key_input(key_type="RSA", key_length=1024)
key = gpg.gen_key(input_data)

View File

@ -3,5 +3,5 @@ requests==2.18.4
PyNaCl==1.2.1
Flask==0.12.2
pycrypto==2.6.1
gnupg==2.3.1
gnupg==0.4.1
sha3==0.2.1